body {
    background: url("/static/img/login.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
    font-family: "Nexa", sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.contenedor-login {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    width: 100vw;
    height: 100vh;
}

.login-form {
    position: relative;
    padding: 3rem;
    border-radius: 1rem;
    margin: 0px auto;
    box-shadow: 0px 0px 50px 13px rgba(0, 0, 0, 0.2);
    width: 600px;
    border: solid 1px #11356b;
    background-color: white;
}

.login-form .mariposa-gif-1 {
    position: absolute;
    width: 250px;
    right: -110px;
    bottom: -90px;
    transform: rotate(-37deg);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input::placeholder {
    color: #acacac;
}

.form-title {
    font-size: 2em;
    line-height: 1.1;
    color: #666666;
}

.form-label {
    font-size: 1.5rem;
}

.form-text {
    font-size: 1.2rem;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 1000px) {
    .login-form {
        max-width: 400px;
    }

    .login-form .mariposa-gif-1 {
        left: -120px;
        top: -100px;
        width: 250px;
        transform: rotate(37deg);
    }
}