﻿/* [LAYOUT] */
.layout-home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 50px);
    z-index: 0;
    font-family: var(--fonte);
    background-color: whitesmoke;
}

/* [BOX] */
.home-box {
    width: 340px;
    border: 1px solid lightgray;
    border-radius: 8px;
    background-color: white;
}

.home-box-titulo {
    display: flex;
    justify-content: start;
    margin-top: 10px;
    margin-left: 10px;
}

.home-box-titulo h5 {
    font-weight: 300;
    color: black;
    font-size: 0.9em;
}

/* [FORMULARIO] login */
.home-box form {
    margin: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Imagem da logo no formulario */
.home-form-img {
    margin-left: auto;
    margin-right: auto;
}

/* Div com inputs */
.home-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-form-inputs input {
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid lightgray;
    font-size: 1em;
    padding-left: 5px;
}

.home-form-inputs input:focus {
    outline: none;
}

.home-form-inputs h6 {
    font-size: 0.8em;
    color: gray;
    font-weight: 300;
}

/* [BUTTON] de enviar dados do formulario */
.home-box form button {
    width: 100px;
    height: 40px;
    border: none;
    margin-bottom: 5px;
    border-radius: 4px;
    background-color: orange;
    color: white;
    cursor: pointer;
    font-weight: 500;
}

.home-box form button:hover {
    background-color: darkorange;
    transition: 1s;
}

/* [BUTTON] 'Esqueci minha senha'*/
.home-box a {
    font-size: 0.8em;
    color: gray;
    text-decoration: none;
    transition: 1s;
}

.home-box a:hover {
    font-size: 0.83em;
    color: darkorange;
    transition: 1s;
}