@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #FAFAFA;
}

:root {
    --green-primary: #009E60;
}



/* BASE  */
/* .auth-container, .ac-left, .ac-right {
    border: solid red 1px;
} */


.auth-container {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.ac-left {
    width: 40%;
    height: 100%;
}

.ac-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ac-right {
    width: 60%; 
    height: 100%;

    padding: 50px 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* LOGIN */
/* .l-top, .l-middle, .l-bottom, .form-group {
    border: solid red 1px;
} */

.l-top {
    width: 100%;
    height: 20%;
}


.l-middle {
    width: 100%;
    height: 10%;

    padding: 10px 0 10px 0;
}   

.lm-register {
    height: 18%;
}

.form-group {
    width: 100%;
    height: 70px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    height: 40px;

    font-size: 12px;
    font-weight: 300;
    padding-left: 10px;

    color: #939393;
    border-radius: 8px;
    border: solid #65656566 1px;
}

.btn {
    width: 100%;
    height: 35px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    
    margin-top: 30px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-full, .btn-full:hover {
    background-color: var(--green-primary);
    color: white;
}

.l-bottom {
    width: 100%;
    height: 20%;

    margin: auto;
    text-align: center;
}

.lb-register {
    height: 5%;
}


.auth-link {
    color: var(--green-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth-link:hover {
    color: var(--green-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.alert-custom {
    width: 100%;
    height: 30px;
    margin : 0;
    padding: 10px;

    display: flex;
    justify-content: start;
    align-items: center;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .ac-left {
        display: none; /* Hide the left section */
    }

    .ac-right {
        width: 100%; /* Make auth section full width */
        padding: 50px 100px; /* Keep original padding */
    }
}

@media screen and (max-width: 768px) {
    .ac-right {
        padding: 50px 60px; /* Slightly reduce padding */
    }
}

@media screen and (max-width: 480px) {
    .ac-right {
        padding: 50px 30px; /* Further reduce padding for mobile */
    }
}