/*
---------------------------------------------
Auth Pages (Login & Register)
---------------------------------------------
*/
.auth-page {
  padding: 140px 0px 80px 0px;
  min-height: 100vh;
  background-color: #f0f7ff;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(3, 164, 237, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.auth-header p {
  font-size: 14px;
  color: #888;
}

/* Google Button */
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-google:hover {
  border-color: #03a4ed;
  background: #f8fbff;
}

/* Divider */
.divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.divider:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.divider span {
  background: #fff;
  padding: 0 15px;
  font-size: 13px;
  color: #999;
  position: relative;
  z-index: 1;
}

/* Form */
.auth-card .form-group {
  margin-bottom: 20px;
}

.auth-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="tel"] {
  width: 100%;
  height: 50px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fafafa;
  transition: all 0.3s;
  outline: none;
}

.auth-card input:focus {
  border-color: #03a4ed;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(3, 164, 237, 0.1);
}

.auth-card input::placeholder {
  color: #aaa;
}

/* Remember & Forgot */
.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -10px;
  margin-bottom: 20px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  font-weight: 500;
}

.remember-me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #03a4ed;
  cursor: pointer;
}

.remember-forgot a {
  font-size: 13px;
  color: #03a4ed;
  font-weight: 500;
}

.remember-forgot a:hover {
  color: #0277bd;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #03a4ed, #0277bd);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0288d1, #01579b);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(3, 164, 237, 0.3);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Messages */
.error-msg {
  background: #fff5f5;
  color: #c53030;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 15px;
  border-left: 4px solid #c53030;
}

.success-msg {
  background: #f0fff4;
  color: #22543d;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 15px;
  border-left: 4px solid #38a169;
}

/* Footer */
.auth-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.auth-footer p {
  font-size: 14px;
  color: #888;
}

.auth-footer a {
  color: #03a4ed;
  font-weight: 600;
}

.auth-footer a:hover {
  color: #0277bd;
}

/* Responsive */
@media (max-width: 767px) {
  .auth-card {
    padding: 30px 25px;
    margin: 0 10px;
  }
  .auth-page {
    padding: 120px 0px 60px 0px;
  }
}