
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f1f5f9;
  margin: 0;
  padding: 0;
}

.contact-wrapper {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-radius: 8px;
}

h2 {
  text-align: center;
  color: #0e4c92;
  margin-bottom: 30px;
}

label {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  resize: vertical;
}

button {
  margin-top: 25px;
  padding: 12px 24px;
  background: #0e4c92;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

button:hover {
  background: #093469;
}

.contact-details {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.contact-details p {
  margin: 10px 0;
  font-size: 15px;
}

.contact-details i {
  color: #0e4c92;
  margin-right: 10px;
}

.hidden {
  display: none;
}

.textarea-container {
  position: relative;
}

.textarea-icons {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 12px;
}

.textarea-icons i {
  color: #0e4c92;
  cursor: pointer;
  font-size: 18px;
}


/*........*/
.textarea-icons {
  position: absolute;
  bottom: 10px;
  right: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.recording {
  animation: pulsing 1s infinite;
  color: #e63946;
}
@keyframes pulsing {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
#recordTimer {
  margin-right: 8px;
  font-size: 14px;
  color: #e63946;
}
.file-preview {
  margin-top: 10px;
}
.file-preview img {
  max-height: 80px;
  display: block;
  margin-bottom: 5px;
}
.file-preview a {
  display: block;
  margin-bottom: 5px;
  color: #0e4c92;
}



.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: #0e4c92;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.back-btn i {
  margin-right: 8px;
}

.back-btn:hover {
  color: #093469;
  text-decoration: underline;
}


.login-redirect {
  text-align: center;
  background: #ffe5e5;
  color: #b00020;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid #f5c2c7;
}

.login-redirect button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #0e4c92;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.login-redirect button:hover {
  background-color: #093469;
}
