body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #1c3b70, #3a7bd5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo img:first-child {
    max-height: 60px;
    width: auto;
}

.logo img:last-child {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

h1 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[type="text"],
input[type="date"],
.btn {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn {
    background-color: #0052cc;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.btn:hover {
    background-color: #003f99;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    transform: scale(1.12);
    transform-origin: top center;
}

.error-container {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.error-container h1 {
    color: #e80300;
    margin-bottom: 0.5rem;
}

.error-container p {
    color: #555;
}
