.account-pages {
    background-image: url('/assets/images/background-login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.custom-container {
    display: flex;
    justify-content: flex-end;
    padding: 100px;
    margin-left: auto;
    max-width: 100%;
}

.form-wrapper {
    max-width: 500px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    /* Fondo blanco semi-transparente para el formulario */
    padding: 20px;
    border-radius: 8px;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.login-image {
    width: 150px;
    height: auto;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .form-wrapper {
        max-width: 90%;
    }

    .custom-container {
        padding: 0;
    }
}