.resetPassword{
    justify-content: space-between;
}

.reset{
    margin-right: 320px !important;
}

@media (min-width: 500px) and (max-width: 769px) {
    .reset {
        margin-right: 0 !important;
    }
}

@media (min-width: 770px) and (max-width: 900px) {
    .reset {
        margin-right: 215px !important;
    }
}

@media (min-width: 993px) and (max-width: 1584px) {
    .reset {
        margin-right: 255px !important;
    }
}

.position-relative {
    position: relative;
}

.fa-eye{
    position: absolute;
    right: 10px;
    top: 71% !important;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 28px !important;
}
 .fa-eye-slash:before {
     position: absolute;
     right: 0 !important;
     top: 73% !important;
     transform: translateY(-50%);
     cursor: pointer;
     font-size: 28px !important;
}

.toggleConfirmPassword{
    position: absolute;
    right: 0 !important;
    top: 73% !important;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 28px !important;
}

/* Configuração base para todas */
.slide-img-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.9 !important;
    transition: background-position 0.3s ease-in-out;
}

/* --- IMAGENS DESKTOP --- */
.slide-1 { background-image: url('../img/logo1dsk.jpg'); }
.slide-2 { background-image: url('../img/logo2dsk.jpg'); }
.slide-3 { background-image: url('../img/logo3dsk.jpg'); }

/* --- IMAGENS NOTEBOOK/TABLET (ATÉ 1550PX) --- */
@media (max-width: 1550px) {
    .slide-1 { background-image: url('../img/banner2_1.jpg'); }
    .slide-2 { background-image: url('../img/banner2_2.jpg'); }
    .slide-3 { background-image: url('../img/banner2_3.jpg'); }
}

@media (max-width: 1277px) {
    .slide-1 { background-image: url('../img/banner3_1.jpg'); }
    .slide-2 { background-image: url('../img/banner3_2.jpg'); }
    .slide-3 { background-image: url('../img/banner3_3.jpg'); }
}
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 99;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.slide-content a.slide-btn {
    display: inline-block;
    background: rgba(241, 134, 34, 0.95);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}

.slide-content a.slide-btn:hover {
    background: #f18622;
    transform: scale(1.05);
}

/* Slide 1 (modo claro) */
.slide-1-active .slide-content {
    color: #000; /* texto preto */
}

.slide-1-active .slide-content a.slide-btn {
    background: #fff;
    color: #000;
}

.slide-1-active .slide-content a.slide-btn:hover {
    background: #f0f0f0;
    color: #000;
}

/* Garantir imagem no fundo */
.slide-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
}


