body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 80px;
    color: #333;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #666;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-container img {
    width: 150px;
    height: auto;
    pointer-events: none;
    user-drag: none;
}

a.logo-link {
    display: inline-block;
}

.contenedor-formulario-acceso {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    border: 2px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

form {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

form h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    padding: 10px;
    font-size: 1em;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

.toggle-form {
    font-size: 0.9em;
    margin-top: 10px;
}

.toggle-form a {
    color: #007BFF;
    text-decoration: none;
}

.toggle-form a:hover {
    text-decoration: underline;
}

.google-login {
    margin-top: 20px;
}

.google-login img {
    width: 240px;
    max-width: 90%;
}

.oculto {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contenedor-formulario-acceso {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    form {
        width: 100%;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 36px;
    }

    p {
        font-size: 16px;
    }
}
