/* login.css */
/* ... Seu CSS geral ... */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}
.container {
    background-color: #111;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    max-width: 400px;
    width: 100%;
    margin:3vh;
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.tabs a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding-bottom: 4px;
}
.tabs a.active {
    border-bottom: 2px solid #fff;
}
.description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
label {
    font-size: 14px;
}
input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #888;
    background-color: #222;
    color: #fff;
    font-size: 14px;
}
input::placeholder {
    color: #aaa;
}
.forgot-password {
    text-align: right;
    font-size: 13px;
    color: #bbb;
}
.btn-login {
    background: linear-gradient(90deg, #00f0ff, #7f00ff);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-login:hover {
    background: linear-gradient(90deg, #7f00ff, #00f0ff);
}

/* Pop-up VH */
#popup-login {
  display: none; position: fixed; z-index: 99999;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10,16,30,0.88);
  align-items: center; justify-content: center;
  transition: opacity 0.2s;
}
#popup-login .popup-content {
  background: #181f2d; border-radius: 26px;
  box-shadow: 0 12px 48px #0008;
  padding: 32px 26px 20px 26px;
  text-align: center; max-width: 96vw;
  border: 2px solid #2fd0f7;
  animation: popin 0.32s cubic-bezier(.85,-0.01,.22,1.17);
}
#popup-login h2 {
  color: #fff; font-size: 1.7rem; font-weight: bold;
  margin-bottom: 12px; letter-spacing: 0.03em;
  text-shadow: 0 2px 8px #1234;
}
#popup-login h2 .blue { color: #2fd0f7; text-shadow: 0 2px 12px #2fd0f755;}
#popup-login p { color: #b4d4ef; font-size: 1.08rem; margin-bottom: 20px;}
#popup-login button {
  padding: 8px 26px; border: none; border-radius: 12px;
  background: linear-gradient(90deg, #2fd0f7 0%, #6b6eff 100%);
  color: #fff; font-size: 1.05rem; font-weight: bold; cursor: pointer;
  box-shadow: 0 2px 12px #2fd0f77c;
  transition: background 0.2s, transform 0.1s;
}
#popup-login button:hover {
  background: linear-gradient(90deg, #6b6eff 0%, #2fd0f7 100%);
  transform: translateY(-2px) scale(1.04);
}
@keyframes popin { 0% { opacity: 0; transform: scale(0.9);} 100% { opacity: 1; transform: scale(1);}}
@media (max-width: 600px) {
  #popup-login .popup-content { padding: 12vw 4vw 18px 4vw; }
  #popup-login h2 { font-size: 1.15rem;}
}
