.modal-acesso {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  backdrop-filter: blur(5px);
  z-index: 9999;
    color:#f2f2f2;
}

.modal-acesso-content {width: 90%;max-width: 480px;position: relative;box-shadow: 0 0 20px rgba(0,0,0,0.5);font-family: 'Inter', sans-serif;background: #0f0f0f;}

.modal-acesso-close {
  position: absolute;
  right: 20px;
  width: 30px;
    height: 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1px;
}

.modal-acesso-login-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.modal-acesso-tab-btn {
  flex: 1;
  padding: 10px;

  border: none;
  cursor: pointer;
  font-weight: bold;
}

.modal-acesso-tab-btn.active {
  background: #007bff;
  color: white;
}

.modal-acesso-tab-content {
  display: none;
}

.modal-acesso-tab-content.active {
  display: block;
}

.modal-acesso-form-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.modal-acesso .register-btn {
  width: 100%;
  padding: 15px;
  background: #f76700;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 1px;
}
.google-btn {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    background: #191919;
    color: #f2f2f2;
}

.google-btn:hover {
    
     border: 1px solid rgba(255, 255, 255, 0.1);
     background: #191919;
    color: #f2f2f2;
}
.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.login-btn {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: #f76700;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
}
.logout-area{
  justify-content: center;
  display: flex;
}
.logout-btn {
    width: 30%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: none;
    color: #f2f2f2;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
}


.modal-acesso .auth-message {
  margin: 15px 0px;
  color: orange;
  font-size: 20px;
  display: none;
  text-align: center;
  
}

.modal-acesso-login-separator {
  text-align: center;
  margin: 15px 0;
  position: relative;
}

.modal-acesso-login-separator span {
  
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.modal-acesso-login-separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1px solid #ccc;
  z-index: 1;
}

.modal-acesso-logout-area {
  margin-top: 20px;
  text-align: center;
}

.modal-acesso .recuperar-senha {
  text-align: right;
  font-size: 14px;

  margin-top: 10px;
}
.modal-acesso .recuperar-senha a {
  opacity: 0.8;
  text-decoration: underline;
}

/*LOGIN CSS*/


.login-separator {
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 40px auto;
}


.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.login-separator span {
    padding: 0 10px;

}

#loginForm {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#registerForm {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
::placeholder {
     font-size: 16px;
}
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 18px;
    font-weigth: 500;
    margin-bottom: 10px;
}

.form-links a {
    color: #fff;
}


.login-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.tab-btn {
    background: none;
    border: none;
    color: #f2f2f2;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f76700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    opacity: 1;
    background: #222;
}

.tab-btn.active::after {
    transform: scaleX(1);
}



.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Correções para as tabs */
.tab-content {
    display: none;
    width: 100%;
    max-width: 480px;
    padding: 20px 0;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
}
.form-input {
    outline: none;
    background: #191919;
    color: #f2f2f2;
}

.form-input:focus {
    outline: none;
    border-color: #f76700;
}

.senha-container {
   position: relative;
}

.senha-input {
   width: 100%;
   padding-right: 40px;
}

.senha-toggle {
   position: absolute;
   top: 45%;
   right: 20px;
   transform: translateY(-50%);
   font-size: 20px;
   cursor: pointer;
  
}
