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

:root {
    --font-primary: 'Poppins', sans-serif;
    --roxo-primario: #240234;
    --roxo-secundario: #331E59;
    --azul-principal: #3746CD;
    --azul-secundário: #A3F4FF;
    --verde: #12BA23;
    --vermelho: #BB1414;
    --amarelo: #FFA600;
    --branco: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    text-decoration: none;
    list-style: none;
}

body {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.login {
    width: 50%;
    padding: 7%;
    background-color: var(--branco);
    display: flex;
    flex-direction: column;
}

.login form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login h1 {
    font-size: 60px;
    color: var(--roxo-primario);
    
}

.login label {
    color: #000;
    font: 600 17px/normal Poppins;
}

.login input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
}

.login .forgot_password {
    color: #888;
    font-size: 14px;
    text-decoration: none;
    text-align: end;

}

.login .forgot_password:hover {
    text-decoration: underline;
}

.login button {
    margin-top: 2rem;
    width: 100%;
    padding: 10px;
    background-color: var(--verde);
    color: white;
    font: 700 20px/normal Poppins;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login button:hover {
    background-color: #10802a;
}

.login p {
    font-size: 14px;
    color: #888;
    text-align: center;
}

.login a:hover {
    text-decoration: underline;
}

.login .create-account {
    color: var(--verde);
    text-decoration: none;
    font-weight: bold;
}

.background {
    width: 50%;
    background-image: url('../../images/background-ligin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    gap: 20px;
}

.background h2 {
    font-size: 100px;
}

.img {
    background-image: url('../../images/floco-de-neve\ 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
}
