@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-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: 5%;
}

.desc-header p {
    font-size: 2em;
    color: #002e26;
}

.cont-header {
    width: auto;
    height: auto;
    text-align: center;
    display: center;
    justify-content: center;
    
}

.cont-header h1 {
    color: #002e26;
}

.cont-header form {
    width: 350px;
    height: auto;
    border: 1px solid #002e26;
    padding: 1em;
    margin: 2em;
    border-radius: 1em;
}

.cont-header form .label {
    display: block;
    padding: 10px;
}

.cont-header input {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

#loginUsuario, #loginProfesor, #loginAlumno{
    display: block;
    width: 100%;
    padding: .7em;
    border: none;
    border-radius: 8px;
    background: #002e26;
    color: #fff;
    cursor: pointer;
}

.app-sidebar__user-avatar {
    width: 48px;
    padding: 6px;
    background: #fff;
}

.app .app-sidebar, .app .app-nav, .app .app-header {
    background: #002e26 !important;
}


.app-sidebar__toggle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-sidebar__toggle::before {
    display: none;
}
