* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.acessarLogins {
    width: 100%;
    height: 100vh;  
    display: flex;
}

.container {
    background: #16222A;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #3A6073, #16222A);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #3A6073, #16222A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    margin: auto;
    padding: 80px 48px;
    border-radius: 12px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wrapper input {
    padding: 12px 4px;
    width: 300px;
}

.btnAcessar {
    padding: 12px 24px;
    margin: 0 auto;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    background: #134E5E;
    background: -webkit-linear-gradient(to right, #71B280, #134E5E);
    background: linear-gradient(to right, #71B280, #134E5E);
    cursor: pointer;
}

.btnAcessar:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

#acesso {
    width: 100%;
    height: 100vh;  
    display: flex;
}

#acesso .container {
    width: 100%;
}

#acesso .acessos {  
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

#acesso .acessos label {
    font-size: 16px;
    font-weight: bold;
}

#acesso .acessos input {
    background-color: transparent;
    outline: none;
    color: white;
}