body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: #fff;
    margin: 0;
    text-align: center; /* Centrar horizontalmente */
    align-items: center;
    justify-content: center;
    /*flex-direction: column;
    align-items: center;
    justify-content: center;*/
}

a {
    text-decoration: none;
    color: white;
    margin-left: 10px;
    margin-right: 10px;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
    outline: none;
    border: none;
}

.imglog {
    width: 120px;
    height: 120px;
    /*margin: auto;*/
    margin: 20% 0 10% 0;
}

img {
    margin: 0px;
    margin-top: 10px;
    width: 25px;
    height: 25px;
}

img:hover {
    background-color: rgba(255, 255, 255, 0.438);
    border-radius: 3px;
    cursor: pointer;
}

h1 {
    color: #ff0000;
    text-align: center;
    text-shadow: 0 0 25px dodgerblue;
    /*rgb(135, 248, 255)*/
}

.subtitle {
    color: dodgerblue;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 5, 5, 0.85);
}

form {
    margin: auto;
    background-color: #000;
    border-radius: 8px;
    border-width: 3px;
    border-style:outset;
    border-color:dodgerblue;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.85);
    padding: 20px;
    width: 300px;
    text-align: center;
    margin-top: 20px;
}

.login input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    box-sizing: border-box;
}

.btn {
    background-color: #f00;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #d00;
}

.toolbar {
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #222;
    text-decoration: none;
    color: white;
    align-items: center;
    display: flex;
    box-shadow: -2px 5px 10px rgba(255, 255, 255, 0.5);
    justify-content: space-between; /* Añadido para espaciar los elementos */
}

.toolbar h1 {
    color: white;
    text-shadow: 0 0 25px red;
    margin: auto;
    font-size: 16px;
}

.title {
    /*flex: 1; Añadido para que el título ocupe el espacio restante */
    padding: 0px;
    margin: auto;
    font-size: 16px;
}

.sair {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 5px;
    margin-left: 5px;
    background-color: red;
}

.adm {
    background-color: orange;
    color: black;
    margin-left: auto; /* Añadido para empujarlo totalmente a la derecha */
}

.menu-btn {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-right: 10px;
}

.drawer1 {
    background-color: #333;
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.507);
    width: 100%;
    height: auto;
    margin: 0px;
    position: absolute;
    top: 5%;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    display: none;
}

.drawer1 a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding: 10px;
    text-decoration: none;
    color: white;
    font-size: 12px;
    border-radius: 3px;
    outline: none;
    border: none;
}

.drawer1.active {
    display: flex;
}

.drawer1 a.active {
    margin: 0;
}

footer {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 4px;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
}

main {
    width: 100%;
    height: 100%;
    margin-bottom: 50%;
    padding: auto;
}