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

.account-pages::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/background-login.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; 
}

.form-wrapper {
    width: 100%;
    max-width: 100%;
    background: #ffffff; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.form-container {
    padding: 20px;
}

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


.custom-container{
    padding: 10px!important;
}