* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form-otp-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 20px;
}

.contact-form-otp-container h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.5rem;
}

.contact-form-otp-container button {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form-otp-container button:hover {
  background-color: #2980b9;
}

.contact-form-otp {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-otp input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form-otp input:focus {
  outline: none;
  border-color: #3498db;
}

.contact-form-otp input::placeholder {
  color: #95a5a6;
}

.contact-form-otp button {
  margin-top: 10px;
  background-color: #2ecc71;
}

.contact-form-otp button:hover {
  background-color: #27ae60;
}

.contact-form-otp-container .message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.contact-form-otp-container .message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.contact-form-otp-container .message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.contact-form-otp .phone-section {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-form-otp .phone-section input {
  flex: 1;
}

.contact-form-otp .otp-section {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.contact-form-otp .otp-section input {
  flex: 1;
}

.contact-form-otp .email-section {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.contact-form-otp .email-section input {
  flex: 1;
}

.contact-form-otp #sendEmailOtpBtn {
  background-color: #6f42c1;
  white-space: nowrap;
}

.contact-form-otp #sendEmailOtpBtn:hover {
  background-color: #5a32a3;
}

.contact-form-otp #verifyEmailOtpBtn {
  background-color: #fd7e14;
  white-space: nowrap;
}

.contact-form-otp #verifyEmailOtpBtn:hover {
  background-color: #e8690b;
} 