/* Authentication pages styles */

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f5f9ff;
}

.auth-box {
  width: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

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

.auth-header h1 {
  color: #4a90e2;
  margin-bottom: 10px;
}

.auth-header p {
  color: #666;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.auth-form .form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.auth-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 8px;
}

.forgot-password {
  color: #4a90e2;
  font-size: 14px;
}

.btn-auth {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 14px;
}

.auth-footer a {
  color: #4a90e2;
  font-weight: 500;
}

/* Social login */
.social-login {
  margin-top: 20px;
  text-align: center;
}

.social-login p {
  margin-bottom: 15px;
  position: relative;
}

.social-login p:before,
.social-login p:after {
  content: "";
  display: inline-block;
  width: 40%;
  height: 1px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
}

.social-login p:before {
  left: 0;
}

.social-login p:after {
  right: 0;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background-color: #e5e5e5;
}

/* Responsive design */
@media (max-width: 480px) {
  .auth-box {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 30px 20px;
  }
  
  .auth-form .form-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .forgot-password {
    margin-left: 20px;
  }
}