.form-container {
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    width: 100%;
}

.form-container.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.form-container.hidden {
    display: none;
}

.tab {
    position: relative;
    overflow: hidden;
    background-color: rgb(255 255 255 / 0%) !important;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color: #27272a73 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    outline: 1px solid rgba(255, 255, 255, 0.04) !important;
    outline-offset: -1px !important;
}

.captcha-image:hover {
    cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    background-color: transparent !important;
    color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
    background-color: transparent !important;
    color: #ffffff !important;
}

input {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
}

#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    max-width: 350px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.success {
    background-color: rgb(40 167 69 / 40%);
}

.notification.error {
    background-color: rgb(255 0 0 / 40%);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}