/* Make the account-pages div fill the viewport and prevent scroll */
.account-pages {
    min-height: 100vh !important;
    height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Remove vertical margin from .my-5 and .pt-sm-5 */
.account-pages.my-5.pt-sm-5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
}

.sunset-gradient {
    position: relative;
    min-height: 100vh;
    background: #2fd296;
    /* background: #f8f9fa; */
    background: #f8f9fa;
    z-index: 1;
}

.sunset-gradient::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    background: radial-gradient(
        circle at bottom,
        rgba(234, 190, 13, 0.303),
        rgba(245, 120, 37, 0.066)
    );
    border-radius: 90% 10% 0% 0;
    z-index: -1;
}
