/* Estilos globais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

/* Estilos da seção principal */
main {
    display: flex;
}

/* Estilos do lado esquerdo */
.left-side {
    width: 300px;
    padding: 2%;
    background: #40de63;
    color: #fff;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: fixed;
}

.left-side h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.left-side p {
    font-size: 16px;
}

/* Estilos do lado direito */
.right-side {
    margin-left: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.right-side h2 {
    color: #40de63;
    margin: 45px;
}

.right-side form {
    position: relative;
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.right-side form .criar-conta {
    width: 100%;
    text-decoration: none;
    position: absolute;
    bottom: -50px;
    left: 100px;
}

.right-side form input,
.right-side form button {
    background-color: #f5f5f5;
    border: 0;
    padding: 20px;
    border-radius: 12px;
    width: 80%;
}

.right-side form button {
    background: #40de63;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

@media only screen and (max-width: 1100px) {
    .left-side {
        display: none;
    }

    .right-side {
        margin-left: 0;
    }

    .right-side form {
        width: 100%;
    }

    .right-side form .criar-conta {
        width: auto;
        bottom: -50px;
        left: 100px;
    }
}
