body {
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333; /* Dark gray for general text */
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 700px;
  margin: 50px auto;
  background-color: #ffffff;
  padding: 40px 60px 40px 40px ;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

#contact-form h2 {
  color: #003049;
  margin-bottom: 8px;
  font-size: 28px;
}

#contact-form p {
  font-size: 15px;
  margin-bottom: 25px;
  color: #555;
}

.contact-form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fafafa;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fca311;
  box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.2);
  background-color: #fff;
}

.contact-form button {
  background-color: #fca311;
  color: #fff;
  padding: 12px 20px;
  margin-top: 24px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button i {
  margin-right: 6px;
}

.contact-form button:hover {
  background-color: #e59200;
}
.alert-success{
  width: 450px;
  height: 15px ;
  margin-top: -20px;

}

.alert-success i{
 margin-right: 8px;
}


.btn {
    margin-top: 5px;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}



.user-back-success {
    background-color: #28a745;
    color: white;
    text-decoration: none;

}

.user-back-success:hover {
    background-color: #218838;
   
}
.user-back-to-home{
    text-align: center;
    margin-bottom: 20px;
    height: -20px;
}