/**
 * login.css — estilos exclusivos da tela de login (pública, sem autenticação).
 *
 * Propositalmente isolado do main.css compartilhado pelo resto do site: só
 * as regras que login.html realmente usa. Não inclua nada daqui pra frente
 * que não seja usado por login.html.
 */

:root {
    --primary-color: #3d5aac;
    --secondary-color: #ffffff;
    --tertiary-color: #acacac;
}

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    min-height: 600px;
    height: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    font-family: Roboto, Arial, sans-serif;
}

input {
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    text-align: left;
    color: var(--primary-color);
    height: 30px;
    margin: 5px;
    padding: 5px;
    width: 200px;
}

input::placeholder {
    color: #95afff;
    font-weight: bold;
}

span {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
}

.labelLogin {
    font-size: 22px;
    font-weight: bold;
    align-self: center;
    text-align: center;
    color: var(--primary-color);
}

.inputframe {
    display: flex;
    align-items: center;
}

.bgimage {
    background-image: url(img/background.png);
    height: 100lvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoimage {
    background-image: url(./img/LogoCTRLCode.svg);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    align-self: center;
}

.tela {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.btnSubmit {
    background-color: var(--primary-color);
    border: none;
    border-radius: 20px;
    color: var(--secondary-color);
    text-align: center;
    height: 40px;
    width: 210px;
    font-weight: bold;
    font-size: 20px;
    margin-left: 40px
}
