@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

.main-header {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr); CREAR DOS CAPAS */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #ffffff;
}

.main-cont {
    background: #f2f2f2;
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
}

.desc-header {
    width: 100%;
    height: auto;
    text-align: center;  
}

.desc-header img {
    width: 60%;
}

.desc-header p {
    font-size: 2em;
    color: rgb(146, 32, 17);
}

.cont-header {
    width: auto;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.cont-header h1 {
    color: rgb(146, 32, 17);
}

.cont-header form {
    width: 350px;
    height: auto;
    border: 1px solid rgb(146, 32, 17);
    padding: 1em;
    margin: 2em;
    border-radius: 1em;
}

.cont-header form label {
    display: block;
    padding: 10px;
}

.tab-content{
    width: auto;
    height: auto;
    text-align: center; 
}

input {
    width: 100%;
    text-align: center;
}

.app-sidebar__user-avatar {
    max-width: 50px;
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 15px;
}

#loginUsuario, #loginColaborador{
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: .7em;
    border: none;
    border-radius: 8px;
    background: rgb(146, 32, 17);
    color: #ffffff;
    cursor: pointer;
}

.alert {
    color: red;
}