.auth-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.auth-popup {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.auth-popup .popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
}
.auth-popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-popup-header h2 {
    font-size: 25px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.auth-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.auth-popup-form input {
    width: 100%;
    padding: 0.55rem;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 0.9rem;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

.auth-popup-form input:focus {
    outline: none;
    border-color: #333;
}

.auth-popup-form button {
    width: 100%;
    padding: 0.55rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}
.auth-popup-form button:disabled {
    background-color: #999;
}
.auth-popup-form button:disabled:hover {
    background-color: #999; /* Slightly darker on hover */
}

.auth-popup-form button:hover {
    background: #444;
}
.auth-popup-form select {
    padding:0.55rem;
}
.auth-popup-footer {
    text-align: center;
}

.auth-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.auth-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: #666;
}

.auth-links .separator {
    color: #999;
}
