body{
        margin: 0;
        font-family: 'Roboto', sans-serif;
        background: #f9f9f9;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
}

#content {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
    text-align: center;
}

#logo img {
    width: 180px;
    margin-bottom: 1.5rem;
}

#logo h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #103E76;
}

h2 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #103E76;
    font-size: 18px;
}

table {
    width: 100%;
    margin-bottom: 1.5rem;
}

td {
    padding: 0.5rem 0;
    font-weight: 500;
    text-align: left;
    color: #444;
}

input.login {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input.login:focus {
    border: 1px solid #103E76;
    box-shadow: 0px 0px 4px rgba(16,62,118,0.3);
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #103E76;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.1s ease;
}

.btn-login:hover {
    background: #FCA81A; /* amarillo en hover */
    color: #103E76;
}

.btn-login:active {
    transform: scale(0.98);
}

.textred {
    color: #e63946;
    margin-bottom: 1rem;
    font-size: 14px;
}

a.text-red {
    color: #e63946;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

a.text-red:hover {
    color: #FCA81A;
}