body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f0f0;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.container h1 {
    color: #03543f; /* Verde similar al del logo */
    text-align: center;
}

.container img {
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 5px solid #B3134F; /* Color del borde */
    border-radius: 8px; /* Redondear el borde */
}

.captcha-container {
    display: flex;
    align-items: center;
    justify-content: space-between;	
    height: 30px;
}

.captcha-image {
    max-height: 30px;
}

.captcha-button {
    margin-left: 10px;
}

.captcha-input {
    text-align: center; /* Centrar el texto en el input */
    width: 100px; /* Ajustar el ancho del input según sea necesario */
    margin-top: 10px; /* Espacio adicional para separación */
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button {
    background: #0D65A4; /* azul similar al del logo */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.button:hover {
    background: #e68a00;
}

.error {
    color: red;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 15px;
    text-align: left;
}

@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .captcha-container {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-button {
        margin: 10px 0 0 0;
        width: 100%;
    }

    .captcha-input {
        width: 100%;
    }

    .button {
        font-size: 16px;
    }
}
