:root {
    --cor-fundo: #101619;
    --cor-banner: #1B272C;
    --cor-marca: #143DF9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--cor-fundo);
    color: white;
    line-height: 1.6;
}


.pagina {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner {
    display: flex;
    flex-direction: column;
    background-color: var(--cor-banner);
    width: 20%;
    height: auto;
    padding: 20px;
    border-radius: 10px;
}

img.logo {
    width: 50%;
    margin: 10px auto;
}

label {
    font-size: 14px;
    font-weight: bold;
}

input {
    border: none;
    background-color: var(--cor-fundo);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin: 0 0 10px 0;
}

button {
    border: none;
    width: 10vw;
    padding: 10px;
    background-color: var(--cor-marca);
    color: white;
    margin: 10px auto;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

#status {
    font-size: 11px;
    font-weight: bold;
    background-color: var(--cor-fundo);
    color: white;
    margin: 0 auto;
    padding: 2px 10px;
    border-radius: 100px;
}