.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #d63384 0%, #101010 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIgZD0iTTM2IDM0djRoLTR2LTRoNHptMC0xNnY0aC00di00aDR6bTAgMTZ2NGgtNHYtNGg0em0wLTE2djRoLTR2LTRoNHoiLz48L2c+PC9zdmc+');
    opacity: 0.4;
    z-index: 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

/* Auth Card */
.auth-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.auth-logo img {
    height: 30px;
    width: auto;
}

.auth-header h1 {
    font-size: 24px;
    color: var(--dark-mode);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.auth-header p {
    font-size: 1rem;
}
/* ===== FORM STYLES ===== */
.auth-form {
  margin-bottom: 2rem;
}

/* Form Group */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink-mode);
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Input Group */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 15px;
  color: #999;
  z-index: 1;
  transition: color 0.3s ease;
}

.input-group:focus-within i {
  color: var(--pink-mode);
}

.input-group input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.input-group input:focus {
  outline: none;
  background: white;
  border-color: var(--pink-mode);
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

/* Toggle Password */
.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 10px 0 20px 23px;
  z-index: 2;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: var(--pink-mode);
}

/* Password Strength */
.password-strength {
  margin-top: 0.5rem;
}

.strength-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.strength-indicator {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
}

.strength-indicator.weak {
  background: #e74c3c;
  width: 33.33%;
}

.strength-indicator.medium {
  background: #f39c12;
  width: 66.66%;
}

.strength-indicator.strong {
  background: #2ecc71;
  width: 100%;
}

.strength-text {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.strength-text.weak {
  color: #e74c3c;
}

.strength-text.medium {
  color: #f39c12;
}

.strength-text.strong {
  color: #2ecc71;
}

/* Checkbox Styles */
.form-group label.checkbox {
  align-items: center;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 14px;
  user-select: none;
  font-weight: 400;
  color: #555;
  cursor: pointer;
}

/* Hide the original checkbox */
.form-group label.checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.form-group .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* On hover */
.form-group label.checkbox:hover .checkmark {
  background-color: #f0f0f0;
}

/* When the checkbox is checked */
.form-group label.checkbox input:checked ~ .checkmark {
  background-color: var(--pink-mode);
  border-color: var(--pink-mode);
}

/* Create the checkmark/indicator (hidden when not checked) */
.form-group .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-group label.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-group label.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Forgot Password Link */
.forgot-link a {
  color: var(--pink-mode);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.forgot-link a:hover {

}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* Divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    transform: translateY(-50%);
}

.auth-divider span {
    background: white;
    padding: 0 15px;
    color: #999;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.auth-footer a {
    color: var(--pink-mode);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #764ba2;
    text-decoration: none;
}

/* Auth Image Section */
.auth-image {
    position: relative;
    background: url('https://images.unsplash.com/photo-1469371670807-013ccf25f16a?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=80') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.image-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 400px;
    z-index: 2;
    animation: fadeIn 1s ease;
}

.image-content h2 {
    font-size: 24px;
    margin-bottom: 1em;
    color: #fff;
}

.image-content p {
    margin-bottom: 2rem;
	color: var(--white);
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
}

.alert i {
    font-size: 1.2rem;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Button Styles */
.btn-auth {
    display: inline-block;
    padding: 12px 24px;
    background: var(--pink-mode);
    color: white;
    border: none;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    width: 100%;
}

.btn-auth:hover {
    background: #101010;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-auth i {
  font-size: 1.1rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pink-mode);
    color: var(--pink-mode);
}

.btn-outline:hover {
    background: var(--pink-mode);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .auth-container {
        max-width: 900px;
    }
    
    .auth-card {
        padding: 2.5rem;
    }
    
    .auth-image {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .auth-page {
        padding: 1rem;
    }
    
    .auth-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .auth-image {
        display: none;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .auth-header h1 {
        font-size: 1.8rem;
    }
    
    .social-login {
        flex-direction: row;
    }
    
    .btn-social {
        flex: 1;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .auth-logo img {
    	height: 25px;
	}
    .auth-page {
        padding: 1rem;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .btn-social {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}