section#main-login{
    width: 100%;
    height: 900px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-image: url(../img/background-login.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;

    .box-login{
        width: 422px;
        text-align: center;

        .logo{
            text-align: center;
            margin:0 auto 50px auto;
            width: 265px;
            height: 75px;
        }

        .text-wellcome{
            text-align: center;

            h2{
                font-family: var(--aventa-black);
                font-size: 30px;
                line-height: 30px;
                letter-spacing: -0.02em;
                text-align: center;
                color: #1D2939;
            }

            p{
                font-family: var(--aventa);
                font-size: 16px;
                line-height: 20.8px;
                text-align: center;
                color: #667085;
                margin-top: 15px;
            }
        }

        form{
            width: 360px;
            margin: 40px auto 0 auto;
            display: flex;
            flex-direction: column;
            gap: 24px;

            .input{
                display: flex;
                flex-direction: column;
                gap: 5px;

                span{
                    font-family: var(--aventa-medium);
                    font-size: 14px;
                    line-height: 20px;
                    text-align: left;
                    color: #344054;
                }

                input{
                    border: 1px solid #D0D5DD;
                    border-radius: 8px;
                    padding: 10px 14px;
                    font-size: 16px;
                    font-family: var(--inter-regular);
                    line-height: 24px;

                    &::placeholder{
                        color: #667085;
                        font-size: 16px;
                        font-family: var(--inter-regular);
                    }
                }
            }

            .remember-login{
                display: flex;
                justify-content: space-between;

                div:nth-of-type(1){
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    p{
                        font-family: var(--aventa-medium);
                        font-size: 14px;
                    }
                }

                a{
                    font-family: var(--aventa-medium);
                    font-size: 14px;
                    line-height: 20px;
                    text-align: left;
                    color: #0000d6;

                    &:hover{
                        text-decoration: underline !important;
                    }
                }
            }

            input[type=submit]{
                background-color: #D4FF00;
                border: none;
                font-family: var(--aventa-medium);
                font-size: 16px;
                line-height: 20.8px;
                color: #0c0c60;
                height: 40px;
                border-radius: 6px;
                transition: all .3s;

                &:hover{
                    background-color: #0000d6;
                    color: #D4FF00;
                    transition: all .3s;
                }
            }
        }

        .btn-login-google{
            width: 360px;
            height: 40px;
            background-color: #fff;
            border: 1px solid #D0D5DD;
            border-radius: 8px;
            margin: 20px 0;
            transition: all .3s;

            &:hover{
                background-color: #0c0c60;
                color: #fff;
                transition: all .3s;
            }
        }

        .dont-account{
            text-align: center;
            font-family: var(--aventa-medium);
            font-size: 14px;

            a{
                color: #0000d6;

                &:hover{
                    text-decoration: underline !important;
                }
            }
        }
    }
}

@media (width < 1280px){
    section#main-login{
        height: 100vh !important;
        background-position: center bottom;
        background-size: 1500px;
    
        .box-login{
            width: 300px;
            text-align: center;
    
            .logo{
                text-align: center;
                margin-bottom: 30px;
                width: 178px;
                height: 50px;
            }
    
            .text-wellcome{
                text-align: center;
    
                h2{
                    font-family: var(--aventa-black);
                    font-size: 24px;
                    line-height: 30px;
                    letter-spacing: -0.02em;
                    text-align: center;
                    color: #1D2939;
                }
    
                p{
                    font-family: var(--aventa);
                    font-size: 16px;
                    line-height: 20.8px;
                    text-align: center;
                    color: #667085;
                    margin-top: 5px;
                }
            }
    
            form{
                width: 300px;
                margin: 40px auto 0 auto;
                display: flex;
                flex-direction: column;
                gap: 24px;
    
                .input{
                    display: flex;
                    flex-direction: column;
                    gap: 5px;
    
                    span{
                        font-family: var(--aventa-medium);
                        font-size: 14px;
                        line-height: 20px;
                        text-align: left;
                        color: #344054;
                    }
    
                    input{
                        border: 1px solid #D0D5DD;
                        border-radius: 8px;
                        padding: 10px 14px;
                        font-size: 16px;
                        font-family: var(--inter-regular);
                        line-height: 24px;
    
                        &::placeholder{
                            color: #667085;
                            font-size: 16px;
                            font-family: var(--inter-regular);
                        }
                    }
                }
    
                .remember-login{
                    display: flex;
                    justify-content: space-between;
    
                    div:nth-of-type(1){
                        display: flex;
                        align-items: center;
                        gap: 8px;
    
                        p{
                            font-family: var(--aventa-medium);
                            font-size: 14px;
                            position: relative;
                            top: 2px;
                        }
                    }
    
                    a{
                        font-family: var(--aventa-medium);
                        font-size: 14px;
                        line-height: 20px;
                        text-align: left;
                        color: #0000d6;
    
                        &:hover{
                            text-decoration: underline !important;
                        }
                    }
                }
    
                input[type=submit]{
                    background-color: #D4FF00;
                    border: none;
                    font-family: var(--aventa-medium);
                    font-size: 16px;
                    line-height: 20.8px;
                    color: #0c0c60;
                    height: 40px;
                    border-radius: 6px;
                    transition: all .3s;
    
                    &:hover{
                        background-color: #0000d6;
                        color: #D4FF00;
                        transition: all .3s;
                    }
                }
            }
    
            .btn-login-google{
                width: 300px;
                height: 40px;
                background-color: #fff;
                border: 1px solid #D0D5DD;
                border-radius: 8px;
                margin: 20px 0;
                transition: all .3s;
    
                &:hover{
                    background-color: #0c0c60;
                    color: #fff;
                    transition: all .3s;
                }
            }
    
            .dont-account{
                text-align: center;
                font-family: var(--aventa-medium);
                font-size: 14px;
    
                a{
                    color: #0000d6;
    
                    &:hover{
                        text-decoration: underline !important;
                    }
                }
            }
        }
    }
}

@media (width < 600px){
    section#main-login{
        background-position: center bottom;
        background-size: 1000px;
    }
}