/* Estilos para o popup de login */
.login-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    overflow: auto;
}

body.popup-open {
    overflow: hidden !important;
    width: 100%;
    height: 100%;
}

.login-popup-content {
    background-color: #020711;
    border: 1px solid #C962FF80;
    width: 82%;
    max-width: 450px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.login-tabs {
    display: flex;
    margin-bottom: 20px;
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
}

.tab-button.active {
    color: #fff;
    background: var(--e-global-color-cafed23);
    border-radius: 10px;
}

.form-group input {
    width: -webkit-fill-available;
    padding: 12px;
    border: 2px solid var(--e-global-color-cafed23);
    border-radius: 5px;
    background: none;
    color: #fff;
}

.login-button,
.register-button {
    width: 100%;
    padding: 12px;
    background-color: #2D0A4E;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
