
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  height: 40px;
}

/* Authentication Container */
.auth-container {
  max-width: 450px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.auth-header p {
  color: #666;
  font-size: 16px;
}

/* Welcome Bonus */
.welcome-bonus {
  display: flex;
  align-items: center;
  background-color: #fff8e1;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  color: #ffa000;
}

.welcome-bonus i {
  font-size: 24px;
  margin-right: 15px;
}

.welcome-bonus p {
  font-size: 14px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #e0576e;
  outline: none;
}

/* Phone Input Styles */
.phone-input-container {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.country-code {
  background-color: #f5f5f5;
  padding: 12px 15px;
  border-right: 1px solid #ddd;
  color: #666;
  font-size: 14px;
}

.phone-input-container input {
  border: none;
  flex: 1;
}

/* Button Styles */
.btn-submit {
  width: 100%;
  padding: 12px 20px;
  background-color: #e0576e;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #c94d61;
}

/* OTP Resend Link */
.resend-otp {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.resend-otp a {
  color: #e0576e;
  text-decoration: none;
}

.resend-otp a:hover {
  text-decoration: underline;
}

/* Terms Checkbox */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.terms-checkbox input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.terms-checkbox label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.terms-checkbox a {
  color: #e0576e;
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* Authentication Footer */
.auth-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
}

.auth-footer a {
  color: #e0576e;
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* ReCaptcha Container */
#recaptcha-container {
  margin: 20px 0;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  margin-top: auto;
  text-align: center;
  font-size: 14px;
}

/* Media Queries */
@media (max-width: 480px) {
  .auth-container {
    margin: 20px 15px;
    padding: 20px;
  }
  
  .auth-header h1 {
    font-size: 24px;
  }
  
  .auth-header p {
    font-size: 14px;
  }
  
  .btn-submit {
    font-size: 14px;
  }
}
