:root{
    --very-light-pink: #C7C7C7;
    --text-input-field: #F7F7F7;
    --hospital-green: #ACD9B2;
    --rojo-quinta: #B43C2C;
    --amarillo-quinta: #f3ba14;
    --naranjo-quinta: #d07020;
    --naranjo-claro-quinta: #d4841c;
    --azul-quinta: #2c5cb4;
    --white: #FFFFFF;
    --black: #000000;
    --bsm: 12px;
    --sm: 14px;
    --md: 16px;
    --lg: 18px;
}
body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-image: url(./images/Fondo.png);
}
.login {
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
}
.login-container {
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    width: 500px;
    border-radius: 20px;
    background-color: var(--azul-quinta);
}
.logo {
    width: 250px;
    margin-bottom: 12px;
    margin-top: 20px;
    justify-self: center;
}
.title {
    font-size: 24px;
    margin-bottom: 12px;
    text-align: center;
}
.subtitle {
    color: var(--black);
    font-size: var(--lg);
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 32px;
    text-align: center;
}
.form {
    display:  flex;
    flex-direction: column;
}
.label {
    font-size: var(--sm);
    font-weight: bold;
    margin-bottom: 4px;
}
.input {
    background-color: var(--text-input-field);
    border: none;
    border-radius: 8px;
    width: 180px;
    height: 32px;
    font-size: var(--md);
    padding: 6px;
    margin-bottom: 12px;
}
.button-container {
    display:  flex;
    flex-direction: row;
    justify-self: center;
    gap: 16px;
}
.primary-button {
    background-color: var(--rojo-quinta);
    border-radius: 8px;
    border: none;
    color: var(--white);
    width: 180px;
    cursor: pointer;
    font-size: var(--md);
    font-weight: bold;
    height: 50px;
}
.login-button {
    margin-top: 14px;
    margin-bottom: 30px;
}
@media (max-width: 650px) {
    .login-container {
        width: 300px;
    }
    .logo {
        width: 150px;
    }
    .title {
        font-size: var(--lg);
    }
    .subtitle {
        font-size: var(--sm);
    }
    .primary-button {
        width: 80px;
        font-size: var(--bsm);
    }
}