:root {
    --primary-lsp: #A9CF34;
    --secondary-lsp: #7accb4;
}

*{font-family: 'Montserrat', sans-serif;margin: 0;box-sizing: border-box;}
a{
    text-decoration: none;
    color:  var(--secondary-lsp);
}
body{
    background-color: #f8f8f8;
}
html,body{
    height: 100%;
    margin: 0px;
}

.authentication{
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.authentication::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 75%;
    height: 100%;
    background: linear-gradient(129.91deg, var(--secondary-lsp) -9.91%, var(--primary-lsp) 163.01%);
    transition: all .5s;
}

.container{
    width: 80%;
    margin: auto;
}

.column{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    transition: all .5s;
}

.auth-form{
    background: #FFFFFF;
    box-shadow: 0px 4px 140px rgba(0, 0, 0, 0.15);
    padding: 60px;
    width: 550px;
    transition: all .5s;
}

.hero-content{
    margin: 0px 0px 0px 60px;
    color: #FFFFFF;
}

.hero-content h1{
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.5;
}


.form-title{margin-bottom: 40px;}

.form-title h3{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 12px;
    color: #1C2B2D;
}

.form-title p{
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(28, 43, 45, 0.7);
}

.form-group{
    margin-bottom: 40px;
    overflow: visible;
}

.form-group label{
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #1C2B2D;
}


.form-group input{
    padding: 20px;
    background-color: #f8f8f8;
    border: 0;
    font-size: 16px;
    color: #1C2B2D;
    width: 100%;
    outline: none;
    letter-spacing: 0.5px;
}

.form-group input[type="password"]{
    font-weight: 900;
    letter-spacing: 2.5px;
}

.float{
    display: flex;
    justify-content: space-between;
}

.float a{
    font-size: 14px;
    font-weight: 500;
}

.button-submit{
    padding: 20px;
    width: 100%;
    background-color: var(--secondary-lsp);
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    border: 0;
    letter-spacing: 1.25px;
    cursor: pointer;
}

.link-reg{
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color:  var(--secondary-lsp);
}


.supported{
    display: flex;
    margin-bottom: 40px;
}

.supported img{
    height: 40px;
    margin-right: 20px;
}


/* 
Layout Responsive 
- PC (1440px)
- Laptop (1024px)
- Tablet (768px)
- Mobile L (425px)
- Mobile M (375px)
- Mobile S (320px)
*/

@media screen and (max-width: 1024px){

    .container{
        width: 85%;
        margin: auto;
    }

    .auth-form{
        background: #FFFFFF;
        box-shadow: 0px 4px 140px rgba(0, 0, 0, 0.15);
        padding: 40px;
        width: 550px;
    } 

    .hero-content{
        margin: 0px 0px 0px 40px;
        color: #FFFFFF;
    }
    
}

@media screen and (max-width: 768px){
    
    .authentication::after{width: 100%;}

    .column{
        flex-direction: column;
        margin: 80px 0px ;
    }

    .auth-form{width: 100%;}
    
    .hero-content{
        margin: 0px 0px 40px 0px;
        text-align: center;
    }

    .hero-content h1{
        margin-bottom: 20px;
    }

    .hero-content p{
        display: none;
    }

    .supported{
        justify-content: center;
        margin-bottom: 40px;
    }
    
}

@media screen and (max-width: 425px){

    .container{width: 85%;}

    .column{
        flex-direction: column;
        margin: 40px 0px ;
    }

    .auth-form{padding: 40px;}
    
    .hero-content h1{
        font-size: 34px;
        margin-bottom: 20px;
    }

    .hero-content p{font-size: 14px;}

}

@media screen and (max-width: 375px){
    
}

@media screen and (max-width: 320px){
    
}