body {
    font-family: 'Quicksand', sans-serif;
    background-color: beige;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

header {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.login-container {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 380px;
    text-align: center;
}

.form-group {
    text-align: left;
    margin: 15px 0;
}

label {
    font-size: 1rem;
    font-weight: bold;
    color: #081d61;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #081d61;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #2b3f81;
}

footer {
    background: #1e1e1e;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
}

a {
    color: #081d61;
    text-decoration: none;
    padding: 10px;
    display: inline-block;
}

.cajaentradarecaptcha {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid black;
    margin: 10px 0;
}

.fondorecaptcha {
    background-color: #081d61;
    color: white;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}
