/* Estilos generales */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.logo img {
    max-width: 80px;
    margin-bottom: 20px;
}

h2 {
    color: #FF0000; /* Color rojo que refleja el logo */
    margin-bottom: 10px;
}

.tagline {
    color: #555555;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

button {
    background-color: #FF0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #CC0000;
}

.error {
    color: red;
    margin-top: 10px;
    font-weight: bold;
}

/* Media Queries para mejorar la responsividad */

@media (max-width: 768px) {
    .login-container {
        padding: 20px;
        max-width: 90%;
    }

    .logo img {
        max-width: 60px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 24px;
    }

    .input-group input {
        padding: 8px;
        font-size: 14px;
    }

    button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .tagline {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 20px;
    }

    .input-group input {
        padding: 6px;
        font-size: 12px;
    }

    button {
        padding: 6px 12px;
        font-size: 12px;
    }

    .tagline {
        font-size: 10px;
    }
}