/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(iMAGE/SSS.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Form container */
#form {
  background-color: #475b7573;
  max-width: 600px;
  width: 90%;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 181, 236, 0);
}

/* Vertical form fields */
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
}

input,
textarea,
select {
  padding: 0.75rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus styles */
input:focus,
textarea:focus,
select:focus {
  border-color: #2747a0;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
}

/* Button styling */
button {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background-color: #2747a0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Make textareas resize only vertically */
textarea {
  resize: vertical;
}

.req {
  	margin:2px;
  	color: red;
  }

.Contact {
  color: #ffffff;
  text-align: center;
  }

#vdw {
  color: #131313;
}

#name {
  font-family: Arial, Helvetica, sans-serif;
}

#email {
  font-family: Arial, Helvetica, sans-serif;
}

#message {
  font-family: Arial, Helvetica, sans-serif;
}

