body.min-vh-100::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: linear-gradient(to bottom, #5500ff, #a080ff, white);
    z-index: -1;
}

.auth-section {
    max-width: 1920px;
}

.login-form-container {
    max-width: 580px;
    width: 100%;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.login-form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-form-content h1 {
    font-family: 'Sansation', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 0px;
}

.login-form-content > span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    color: black;
}

.login-form-container form {
    max-width: 450px;
}

.login-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.login-input-group label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 27px;
    text-align: left;
    color: black;
}

.login-input-group > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    width: 100%;
}

.login-input-group > div > div {
    display: flex;
    align-items: center;
}

.login-input-group > div > div input {
    width: 100%;
    max-width: 450px;
    height: 55px;
    border: 1px solid #E3E8F9;
    border-radius: 16px;
    padding-left: 44px;
    padding-right: 10px;
    line-height: 24px;
}

.login-input-group > div > div input:focus {
    border: 2px solid var(--primary-color);
    outline: none;
}

.login-input-group > div > div svg {
    position: absolute;
    left: 10px;
}

.login-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.login-btn {
    width: 300px;
    height: 55px;
    border: none;
    border-radius: 50px;
    background: #A080FF;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(160, 128, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background: #8B5FFF;
    box-shadow: 0 6px 20px rgba(160, 128, 255, 0.4);
}

.login-btn:active {
    box-shadow: 0 2px 10px rgba(160, 128, 255, 0.3);
}

.login-btn > span {
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.login-btn:hover > span {
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.h-custom {
    height:calc(100vh - 60px);
}


@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}