*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: black;
    height: 100vh;
}

.container{
    display: flex;
    height: 100vh;
}

.left,
.right{
    flex: 1;

    display: flex;
    align-items: center;
}

.left{
    justify-content: flex-end;
    padding-right: 60px;
}

.left img{
    width: 450px;
}

.right{
    justify-content: flex-start;
    padding-left: 60px;
}

.login-box{

    background-color: #ececec;

    width: 350px;

    padding: 40px;

    border-radius: 10px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.login-box h1{
    text-align: center;
    font-size: 50px;
}

.login-box input{

    height: 50px;

    border: none;

    border-radius: 10px;

    padding-left: 15px;

    font-size: 16px;

    background-color: #d9d9d9;
}

.login-box a{
    color: #3b82f6;
    text-decoration: none;
}
.login-box a:hover{
    text-decoration: underline;
}

.btn-login{

    background-color: #facc15;

    border: 2px solid transparent;

    height: 45px;

    border-radius: 10px;

    cursor: pointer;

    font-size: 20px;

    font-weight: bold;
}
.btn-login:hover{

    background-color: #d9d9d9;

    border: 2px solid #facc15;
}

.btn-cadastro{

    background-color: #d9d9d9;

    border: 2px solid transparent;

    height: 45px;

    border-radius: 10px;

    cursor: pointer;

    font-size: 15px;
}
.btn-cadastro:hover{

    background-color: #878585;

    border: 2px solid #d9d9d9;
}

.login-box p{
    text-align: center;
    font-weight: bold;
}
/* ───────── RESPONSIVIDADE ───────── */

@media (max-width: 700px){

    .container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .left,
    .right{
        width: 100%;
        justify-content: center;
        padding: 20px;
    }

    .left img{
        width: 250px;
    }

    .login-box{
        width: 90%;
        max-width: 350px;
        padding: 30px;
    }

    .login-box h1{
        font-size: 35px;
    }
}