/* ============ LOGIN PAGE STYLES ============ */

/* Login page container with split background */
.login-page {
    min-height: 100vh;
    background: 
        linear-gradient(to bottom, transparent 50%, white 50%),
        linear-gradient(90deg, rgba(134, 74, 238, 1) 0%, rgba(0, 163, 130, 1) 89%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* White login card */
.login-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0px 6px 47px -1px rgba(0, 0, 0, 0.25);
    padding: 4rem 3rem;
    width: 100%;
    max-width: 680px;
    text-align: left;
}

/* Login title - "Welkom bij Dreamer!" */
.login-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5em;
    color: #003A8E;
    margin: 0 0 1rem 0;
}

/* Login subtitle */
.login-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.36em;
    color: #848484;
    margin: 0 0 3rem 0;
}

/* Login form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Form groups */
.login-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Form labels */
.login-form-group label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.36em;
    color: #000000;
    margin: 0;
}

/* Form inputs */
.login-form-group input {
    padding: 1.25rem 1.5rem;
    border: 1px solid #848484;
    border-radius: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form-group input:focus {
    outline: none;
    border-color: #864AEE;
    box-shadow: 0 0 0 3px rgba(134, 74, 238, 0.1);
}

/* Login button */
.login-button {
    background: #864AEE;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5em;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 1rem;
}

.login-button:hover {
    background: #7840d4;
    transform: translateY(-1px);
}

.login-button:active {
    transform: translateY(0);
}

/* Responsive design for login page */
@media (max-width: 768px) {
    .login-page {
        padding: 1rem;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .login-title {
        font-size: 36px;
    }
    
    .login-subtitle {
        font-size: 20px;
    }
    
    .login-form-group label {
        font-size: 20px;
    }
    
    .login-form-group input {
        font-size: 16px;
        padding: 1rem 1.25rem;
    }
    
    .login-button {
        font-size: 24px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .login-title {
        font-size: 28px;
    }
    
    .login-subtitle {
        font-size: 18px;
    }
    
    .login-form-group label {
        font-size: 18px;
    }
    
    .login-button {
        font-size: 20px;
    }
}

/* End Login Page Styles */


