/* SKO Authentication Redesign - sko-auth.css */

/* Card Container */
.sko-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

/* Logo Styling */
.sko-logo {
  max-width: 100px;
  margin: 0 auto 15px;
}

/* Card Title */
.sko-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000;
}

/* Form Elements */
.sko-form input[type="text"],
.sko-form input[type="tel"],
.sko-form input[type="date"],
.sko-form select,
.sko-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

/* Phone Input Box */
.sko-phone-input {
  margin: 20px 0;
  padding: 15px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* OTP Input Group */
.otp-input-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 20px auto;
}

.otp-input {
  width: 46px !important;
  height: 46px !important;
  text-align: center;
  font-size: 18px !important;
  font-weight: 500;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: transparent;
}

/* Buttons */
.sko-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.sko-btn-primary {
  background-color: #005E20;
  color: white;
}

.sko-btn-link {
  background-color: transparent;
  color: #005E20;
  text-decoration: underline;
}

/* Success Message Styling */
.sko-success-message {
  background-color: #FFFF00;
  color: #000;
  padding: 12px;
  border-radius: 8px;
  margin: 15px 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sko-success-message svg {
  margin-right: 8px;
}

/* Footer Link */
.sko-footer-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.sko-footer-link a {
  color: #005E20;
  text-decoration: none;
  font-weight: 500;
}

/* Alert Messages */
.alert {
  padding: 12px;
  border-radius: 8px;
  margin: 15px 0;
}

/* OTP Timer */
.sko-resend-timer {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

/* Checkmark icon */
.sko-checkmark {
  color: #000;
  margin-right: 8px;
  font-size: 18px;
}

/* Form group spacing */
.form-group {
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .sko-card {
    padding: 20px 15px;
  }
  
  .otp-input {
    width: 40px !important;
    height: 40px !important;
  }
}