body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

.login-page {
    display: flex;
    height: 100vh;
    width: 100%;
}

.brand-section {
    flex: 1;
    background-color: #481E9C;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.login-logo {
    max-width: 60%;
    height: auto;
    width: 427px;
    margin-inline-start: 80px;
    filter: brightness(0) invert(1);
}

.form-section {
    flex: 1.2;
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: #E0E0E0;
    padding: 50px 60px;
    border-radius: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #777;
    padding: 10px 5px;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input::placeholder {
    color: #888;
    font-weight: 400;
}

.input-group input:focus {
    border-bottom: 1px solid #481E9C;
}

.btn-login {
    width: 100%;
    background-color: #481E9C;
    color: white;
    border: none;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 25px;
    transition: background-color 0.3s;
    letter-spacing: 1px;
}

.btn-login:hover {
    background-color: #361578;
}

.forgot-pass {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: "Montserrat", sans-serif;
}

.forgot-pass:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-page {
        flex-direction: column;
    }

    .brand-section {
        flex: 0 0 30%;
        padding: 40px 0;
    }

    .form-section {
        flex: 1;
        padding: 20px;
        background-color: #fff;
    }

    .login-card {
        box-shadow: none;
        background-color: transparent;
        padding: 0;
    }
}