
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-color);
    margin: 0;

}
/* -------------------------------------------- */
/* --------------- Variables --------------- */
/* -------------------------------------------- */
:root {
    --primary-color: #83CBCE; /* Azul principal */
    --secondary-color: #03879F; /* Verde secundario */
    --accent-color: #F6DA1C; /* Rojo de acento */
    --black-color: #3D3C3D;
    --background-color: #FCFEFE; /* Fondo claro */
}

/* -------------------------------------------- */
/* --------------- Login --------------- */
/* -------------------------------------------- */

.login-container {
    background-color: rgba(255, 255, 255, 0.75);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 300px;
    text-align: center;
}
.login-container h2 {
    margin-bottom: 30px;
    font-size: 30px;
}
.login-container input {
    border: none;
    border: 0.5px solid rgba(0, 0, 0, 0.6);
    background: white;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.10) inset;
    height: 40px;
    border-radius: 15px;
    width: 90%;
    padding: 0 15px;
    margin-bottom: 20px;
}
.login-container button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    background: var(--accent-color) !important;
    border: none !important;
    color: #3D3C3D;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.error {
    color: red;
    margin-bottom: 10px;
}


@media(max-width: 600px) {
    .login-container {
        width: 70%;
    }
    .login-container form {
        width: 90%;
    }
}