body {
    font-family: 'Arial', sans-serif;
    background-image: url('../imagenes/fondoPrincipal.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-title {
    text-align: center; 
    margin-bottom: 20px; 
}

.login-title h1 {
    font-family: 'Arial', sans-serif; 
    font-size: 24px; 
    color: #333; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}


.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border-color: aquamarine;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
}

input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="email"]:focus, input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #248966;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2e6156;
}

a {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #007bff;
}

/* 🔁 RESPONSIVE para móviles */
@media (max-width: 480px) {
    body {
        flex-direction: column;
        padding: 1rem;
        height: auto;
        background-size: cover;
        background-attachment: scroll;
    }

    .container {
        max-width: 90%;
        padding: 15px;
    }

    .login-title h1 {
        font-size: 20px;
    }

    input[type="email"], input[type="password"] {
        padding: 8px;
        font-size: 14px;
    }

    button {
        padding: 8px;
        font-size: 14px;
    }

    a {
        font-size: 14px;
    }

    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}
