.auth-wrapper {
    min-height: 87vh;
    /* Full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical center */
    /* align-items: center; */
    /* Horizontal center */
    /* text-align: center; */
    /* Center text */
    /* padding: 20px; */
}

.margin-top-70 {
    margin-top: 70px !important;
}

.beautified-banner {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e7e7e7;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    position: relative;
}


/* Smooth hover glow */

.beautified-banner:hover {
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}


/* Optional subtle overlay */

.beautified-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0));
    pointer-events: none;
}

.beautified-banner img {
    border-radius: 20px;
}