/* Importar fuente Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');

/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 20px;
}

.login-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo img {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    color: #08539a;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #08539a;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #f07a39;
    box-shadow: 0 0 3px #f07a39;
}

.error-message {
    color: #d9534f;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    background-color: #08539a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #063c72;
}

/* Responsive Design */
@media (max-width: 767px) {
    h1 {
        font-size: 1.5rem;
    }

    .btn-login {
        font-size: 1rem;
    }
}