.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8e4ff 100%);
    padding: 20px;
    position: relative;
}

.auth-container {
    max-width: 440px;
    margin: 80px auto;
    width: 100%;
}

@media (max-width: 480px) {
    .auth-container {
        margin: 40px auto;
    }
}

.auth-container {
    
    .login-form {
        background: white;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .logo-section {
        text-align: center;
        margin-bottom: 32px;
    }

    h1 {
        font-size: 24px;
        color: #1a1523;
        margin: 0;
        font-weight: 600;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-input {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.2s;
    }

    .form-input:focus {
        outline: none;
        border-color: #6941c6;
        box-shadow: 0 0 0 4px rgba(105, 65, 198, 0.1);
    }

    .form-input[readonly] {
        background-color: #f9f9f9;
        cursor: not-allowed;
    }

    .button-group {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
    }

    .btn-primary {
        width: 100%;
        padding: 12px;
        background: #1a1523;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .btn-primary:hover {
        background: #2d253a;
    }

    .btn-primary:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-secondary {
        padding: 12px;
        background: #f9f9f9;
        color: #1a1523;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        flex: 1;
    }

    .btn-secondary:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-secondary:hover:not(:disabled) {
        background: #f0f0f0;
    }

    .form-message {
        font-size: 14px;
        text-align: center;
    }

    .form-message.success {
        color: #10b981;
    }

    .form-message.error {
        color: #ef4444;
    }

    .signup-prompt {
        text-align: center;
        margin-top: 24px;
        font-size: 14px;
        color: #666;
    }

    .signup-prompt a {
        color: #1a1523;
        text-decoration: none;
        font-weight: 500;
    }

    .mb-8 {
        margin-bottom: 32px;
    }

    @media (max-width: 480px) {
        .login-form {
            padding: 24px;
        }
    }
}