:root {
    --primary-color: #e6007e;
    --secondary-color: #4b0082;
    --background-color: #f0f0f0;
    --text-color: #333;
    --light-text: #777;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gabarito', Arial, sans-serif;
}

body {
    background-color: var(--background-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}






.login-button-header {
    display: none;
    background: linear-gradient(to right, #e91e63, #4a148c);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 5px 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.936);

}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
}





.register-link .new-user {
    color: #717171;
}

.register-link .register-now {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.register-link .register-now:hover {
    text-decoration: underline;
}



.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    padding: 25px;
    display: flex;
}

/* Two column layout */
.login-left-column {
    width: 40%;
    padding-right: 20px;
}

.login-right-column {
    width: 60%;
    padding-left: 20px;
}

.login-title {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.login-illustration {
    margin-top: 50px;
}

.login-illustration img {
    max-width: 100%;
    height: auto;
    display: block;
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 1.6px solid #9c9c9c;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.3s;
}

.google-login:hover {
    background-color: #f5f5f5;
}

.google-icon {
    margin-right: 10px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--light-text);
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1.6px solid #9c9c9c;
}

.divider span {
    padding: 0 10px;
}

.input-group {
    margin-bottom: 15px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--light-text);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox {
    margin-right: 5px;
}

.forgot-password {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.login-button:hover {
    background-color: #d4006e;
}

.register-link {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.register-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Bottom Navigation - Hidden by default */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid #ddd;
    z-index: 1000;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 10px;
}

.mobile-nav-item svg {
    margin-bottom: 5px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    body {
        background-color: var(--primary-color);
        background: linear-gradient(180deg, #FFFFFF 0%, #FFE4F9 100%);

    }

    .login-button-header {
        display: block;
    }

    .divider{
        margin: 4px 0;
    }

    .search-container {
        display: none;
    }

    .container {
        padding: 15px;
        margin-bottom: 70px;
        align-items: flex-start;
        padding-top: 50px;
    }

    .login-container {
        flex-direction: column;
        max-width: 100%;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 10px;
        margin: 0 auto;
    }

    .login-left-column,
    .login-right-column {
        width: 100%;
        padding: 0;
    }

    .login-left-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .login-title {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .login-illustration {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: -37px auto 20px;
    }

    .login-illustration img {
        max-width: 200px;
    }

    .input-group {
        margin-bottom: 4px;
    }
    

    /* Add space for mobile inputs */
    .input-field {
        margin-bottom: 5px;
        padding: 10px;
    }

    .login-button {
        margin-top: 5px;
    }

    .register-link {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    /* Show mobile navigation */
    .mobile-nav {
        display: block;
    }




}

