.auth-page {
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.auth-input {
    border-radius: 12px;
    border: 2px solid #e8ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.auth-input:focus {
    border-color: #dc3545;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.auth-btn {
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    border: none;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
}

.auth-social-btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #495057;
    font-weight: 500;
}

.auth-social-btn:hover {
    border-color: #dc3545;
    background: #fff5f5;
    transform: translateY(-2px);
    color: #495057;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8ecef;
}

.auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 1rem;
    color: #868e96;
    font-size: 0.875rem;
}

.toggle-password-btn {
    border-radius: 0 12px 12px 0 !important;
    border: 2px solid #e8ecef;
    border-left: none;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.toggle-password-btn:hover {
    background: #e9ecef;
}

.toggle-password-btn:focus {
    box-shadow: none;
    background: #e9ecef;
}

.input-group .auth-input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group:focus-within .toggle-password-btn {
    border-color: #dc3545;
}

.auth-link {
    color: #dc3545;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: #ff416c;
    text-decoration: none;
}

.form-check-input:checked {
    background-color: #dc3545;
    border-color: #dc3545;
}

.form-check-input:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
