/* Auth Modal */
#auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hidden {
    display: none !important;
}

.modal-content {
    background: linear-gradient(to bottom, rgb(var(--clr-black)), rgb(var(--clr-red)));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 0 2px rgb(var(--clr-red));
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 90%;
    position: relative;
    opacity: 0.9;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.modal-content input {
    width: 100%;
    border: 1px solid rgb(var(--clr-red));
    background: rgba(0, 0, 0, 0.5) !important;
    color: rgb(var(--clr-white));
    border-radius: var(--borderRadiusMedium);
    transition: all 0.3s ease;
}

.modal-content input:focus,.modal-content input:active {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgb(var(--clr-red));
    box-shadow: none;
    color: rgb(var(--clr-white));
}

.auth-switch {
    text-align: center;
    color: rgb(var(--clr-white));
}

.auth-switch a {
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-switch a:hover {
    text-decoration: underline;
    color: rgb(var(--clr-red));
}

.login-btn {
    background-color: rgb(var(--clr-red));
    border:1px solid rgb(var(--clr-gold));
    color: rgb(var(--clr-gold));
    border-radius: var(--borderRadiusSmall);
    padding: 5px 10px;
    cursor: pointer;
}

.login-btn:hover,.login-btn.active {
    background-color: rgb(var(--clr-gold));
    color: rgb(var(--clr-red)) !important;
}

.login-btn:focus, .login-btn:active {
    box-shadow: none;
}

#main-wrapper {
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
    background: url('../../dist/img/bg.png') no-repeat center center/cover;
    z-index: 1;
}