/* VIDEO BACKGROUND */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-bg video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* Overlay escurecido */
.video-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(5, 15, 30, 0.60);
    top: 0;
    left: 0;
}

/* CENTRALIZAÇÃO */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* CARD GLASS */
.login-card {
    width: 420px;
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    background: rgba(10, 25, 45, 0.70);
    border: 1px solid rgba(0, 150, 255, 0.35);

    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    color: #ffffff;
}

/* HEADER */
.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header img {
    height: 80px;
    margin-bottom: 10px;
}

.login-header h2 {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #ffffff;
}

/* INPUTS */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #cfe9ff;
}

.input-group input {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0,150,255,0.35);
    padding: 0 15px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-weight: 500;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.6);
}

.input-group input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: #00aaff;
    box-shadow: 0 0 12px rgba(0,170,255,0.45);
}

/* LINK */
.forgot {
    text-align: right;
    margin-bottom: 20px;
}

.forgot a {
    color: #00c6ff;
    font-size: 13px;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

/* BOTÃO LOGIN */
#cmdlogin {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    background: linear-gradient(90deg,#0072ff,#00c6ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}

#cmdlogin:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg,#0088ff,#33d6ff);
}

/* BOTÃO RECUPERAR */
#cmdrecuperar {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg,#0072ff,#00c6ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}

#cmdrecuperar:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg,#0088ff,#33d6ff);
}

/* CÓDIGO VERIFICAÇÃO */
.codigo-container {
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
}

.codigo-input {
    width: 55px;
    height: 65px;
    font-size: 28px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(0,150,255,0.4);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    outline: none;
    transition: 0.2s;
}

.codigo-input:focus {
    border-color: #00aaff;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 12px rgba(0,170,255,0.45);
}

/* BOTÃO VERIFICAR */
.btn-verificar {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(90deg,#0072ff,#00c6ff);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.btn-verificar:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg,#0088ff,#33d6ff);
}