@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --login-card-one:white;
    --login-font: 'Lato', sans-serif;
    
    --signup-card-two: #256ffb;
    
}

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

body{
    background-color: #ffffff;
}

.container{
    min-height: 100vh;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 0;
    padding: 20px;
}

.box1 {

    width: 420px;
    height: 500px;
    z-index: 2;
    background-color: var(--login-card-one);

    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.15);

    position: relative;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.box1:hover{
    transform: scale(1.1);
}

.box1 h2{
    font-family: var(--login-font), serif;
    margin: 50px 0;
}

.box1 .input-colums{
    
    text-align: center;
    width: 80%;
    height: 50px;
    
    border: none;
    border-radius: 10px;
    
    padding: 0 20px;
    margin-bottom: 20px;
    
    box-shadow: 0 2px 8px rgba(0,0,0,.15);

    font-family: poppins, sans-serif;
    font-size: 16px;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.box1 .input-colums:hover{
    color: red;
    background-color: #000000;
    transform: translateY(-3px) scale(1.1);
    transition: 300ms;
}
    
.box1 .log-in{
    background-color: #3565ff;
    color: white;
    
    font-family: var(--login-font), serif;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    
    padding: 10px 30px;
    margin: 30px 0;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.box1 button:hover{
    color: red;
    background-color: #000000;
    transform: translateY(-3px) scale(1.1);
    transition: 300ms;
}


.box2 {

    background: #256ffb url("../../images/wave.svg") no-repeat center;
    background-size: cover;
    
    width: 500px;
    height: 600px;

    margin-left: -40px;

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

    border-radius: 10px;
    box-shadow: 0 0 10px rgb(29 255 93 / 0.15);

    color: white;
    font-weight: 800;
    font-family: var(--login-font), serif;
    
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.box2:hover{
    transform: scale(1.1);
}

.box2 .input-colums{
    text-align: center;
    width: 80%;
    height: 50px;

    border: none;
    border-radius: 10px;

    padding: 0 20px;
    margin-bottom: 20px;

    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    font-size: 16px;
}
    
.box2 p{
    font-family:var(--login-font), serif;
    margin-top: 30px;
}

.box2 .sign-up{
    background: transparent;
    color: white;

    font-family: var(--login-font), serif;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);

    padding: 10px 30px;
    margin: 30px 0;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.box2 button:hover{
    color: red;
    background-color: #000000;
    transform: translateY(-3px) scale(1.1);
    transition: 300ms;
}

@media (max-width:576px){

    .box1,
    .box2{
        width:95%;
    }

    .box1 h2{
        font-size:28px;
    }

    .input-colums{
        width:90%;
        font-size:15px;
    }

}

@media (max-width: 992px){

    .container{
        flex-direction: column;
        align-items: center;
        gap:20px;
    }

    .box1,
    .box2{
        width:90%;
        max-width:450px;
        height:auto;
        margin:0;
        padding:40px 20px;
    }

}

@media (max-width: 1400px){

    .box1{
        width:380px;
        height:470px;
    }

    .box2{
        width:450px;
        height:550px;
    }

}