html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
footer {
    background-color: lightgray;
}
body {
    background-color: lightgray;
}
.login-background {
    background: url('/images/background.jpg') no-repeat center top;
    background-size: auto; /* o cover, según prefieras */
    min-height: 80vh; /* ajusta la altura para mostrar la imagen */
    display: flex; /* centra internamente .login-form */
    align-items: center;
    justify-content: center;
    padding: 2rem 0; /* espacio arriba y abajo */
    background-color: lightgrey;
}
.login-form {
    background-color: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

    .login-form h2,
    .login-form p {
        margin-bottom: 1rem;
    }
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}
/* Zona de respuesta a la derecha: ocupa toda la altura y hace scroll */
#responseCard {
    height: calc(100vh - 7rem);
    overflow-y: auto;
}

/* Botón dentro del textarea de prompt */
.prompt-container {
    position: relative;
}

    .prompt-container textarea {
        padding-right: 3rem;
    }

