body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #a21616;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    background: white;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 850px;
    max-width: 95%;
}

.login-left {
    background: #eee;
    padding: 30px;
    width: 50%;
    text-align: center;
}

.login-left img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
}

.login-left h2 {
    margin-top: 20px;
    font-size: 22px;
    color: #333;
}

.login-right {
    padding: 40px 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right .logo {
    width: 150px;
    margin: 0 auto 20px;
    display: block;
}

.login-right input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-right button {
    background: #8b0000;
    color: white;
    border: none;
    padding: 12px;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
}

.login-right .extras {
    margin-top: 15px;
    text-align: center;
}

.login-right .extras a {
    display: block;
    text-decoration: none;
    font-size: 13px;
    margin: 5px 0;
}

.login-right .extras .aviso {
    background: #3b2b2b;
    color: white;
    padding: 6px;
    border-radius: 3px;
    font-weight: bold;
}
