
    /* Login modal */
#custom-login-modal {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s,opacity .3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0/.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center
}

#custom-login-modal.active {
    visibility: visible;
    opacity: 1
}

.custom-login-content {
    background: linear-gradient(135deg,#1c1f2a,#262b3a);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgb(0 0 0/.6);
    width: 400px;
    max-width: 90%;
    text-align: center;
    position: relative
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #b8b8d1;
    cursor: pointer;
    background: rgb(255 255 255/.1);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease
}

.custom-close:hover {
    background: rgb(255 255 255/.3);
    color: #ff5c8a
}

.custom-login-title {
    font-size: 26px;
    font-weight: 700;
    color: #f4f4f9;
    margin-bottom: 20px
}

.custom-login-form {
    display: flex;
    flex-direction: column
}

.custom-label {
    font-size: 14px;
    color: #d1d1e9;
    margin-bottom: 5px
}

.custom-input {
    border: 1px solid #44475a;
    background: #282a36;
    color: #f8f8f2;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    outline: none;
    transition: all .3s ease
}

.custom-input::placeholder {
    color: #848aa0;
    font-style: italic
}

.custom-input:focus {
    border-color: #8be9fd;
    box-shadow: 0 0 8px rgb(139 233 253/.8)
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    color: #b8b8d1;
    font-size: 14px;
    margin-bottom: 15px;
    gap: 10px
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #ff77b2
}

.custom-submit {
    background: linear-gradient(90deg,#ff5c8a,#ff77b2);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s ease
}

.custom-submit:hover {
    background: linear-gradient(90deg,#ff77b2,#ff5c8a);
    box-shadow: 0 4px 10px rgb(255 92 138/.6)
}

.custom-submit:active {
    transform: scale(.96);
    box-shadow: 0 2px 5px rgb(255 92 138/.5)
}

.custom-message {
    margin-top: 15px;
    font-size: 14px;
    color: #f8f8f2
}

.custom-message.success {
    color: #50fa7b
}

.custom-message.error {
    color: #f55
}

.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    background: #2d2d2d;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgb(0 0 0/.2);
    backdrop-filter: blur(5px)
}

.google-login-button:hover {
    background: #3a3a3a;
    box-shadow: 0 3px 8px rgb(0 0 0/.3)
}

.google-login-button[disabled] {
    background: #1a1a1a;
    color: #666;
    opacity: .7;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none
}

.google-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    width: 20px;
    height: 20px
}

.google-login-button[disabled] .google-icon svg {
    opacity: .7
}

.g-recaptcha {
    margin: 5px auto
}

.google-login-button span {
    display: flex;
    align-items: center
}
/* End of login modal */