body::before {
    content: "";
    position: absolute;
    width: 393px;
    height: 795px;
    left: 50%;
    top: -424px;
    transform: translateX(-50%);
    background: url("../images/reg_top_bg.png") no-repeat center center;
    filter: blur(40px);

}

.display-none {
    display: none;
}

.login-main {
    min-height: calc(100vh - 72px);

}

.login-container {
    max-width: 410px;
    min-width: 410px;
    margin: 0 auto;
    width: 100%;
    box-sizing: content-box;
    text-align: center;
}

.login-container h2 {
    font-size: 56px;
    font-weight: 600;
    color: #fff;
}

.login-form {
    margin-top: 48px;
    text-align: left;
}


.floating-label-group {
    position: relative;
    margin-bottom: 24px;

}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-label-group label {
    position: absolute;
    top: 13px;
    left: 15px;
    font-size: 14px;
    color: #666666;
    pointer-events: none;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    /* Add opacity to transition */
    margin-bottom: 0;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    background-color: transparent;
    padding: 16px 15px;
    /* Top/Bottom padding, Left/Right padding */
    transition: border-color 0.2s ease, box-shadow 0.2s ease, height 0.2s ease, padding 0.2s ease;
    /* Include padding in transition */
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    outline: none;
}

.form-group input:focus {
    outline: none;
    border-color: #FFCA75;
    /* box-shadow: 0 0 0 2px rgba(240, 196, 25, 0.2); */
    height: 70px;
    padding: 38px 15px 12px 15px;
}

.floating-label-group input:focus+label,
.floating-label-group input:not(:placeholder-shown)+label {
    top: 12px;
    font-size: 12px;
    color: #9F9E9A;
}

.floating-label-group input:not(:placeholder-shown):not(:focus)+label {
    opacity: 0;
}

.password-input-container {
    position: relative;
    cursor: pointer;
}

.password-input-container .password-toggle-container {
    position: absolute;
    right: 16px;
    bottom: 24px;
    transform: translateY(50%)
}

.password-input-container .password-toggle-container img {
    width: 20px;
    height: 20px;
}

.forgot-password {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    padding-bottom: 64px;
}
#forgot-password {
    cursor: pointer;
    
}
.btn-submit {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFCA75;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit[disabled] {
    background-color: #333333;
    color: #999999;
}

.btn-submit[disabled]:hover {
    background-color: #444;
    color: #fff;
}

.btn-submit:hover {
    background-color: rgba(255, 202, 117, 0.9);
}