/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}


/* VIDEO */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;

    min-width: 100%;
    min-height: 100%;

    width: auto;
    height: auto;

    transform: translate(-50%, -50%);
    object-fit: cover;

    z-index: -2;
}


/* CENTRALIZAÇÃO */
.wrapper {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}


/* CARD */
.login-card {
    width: 100%;
    max-width: 400px;

    background: #fff;
    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}


/* LOGO */
.login-logo {
    max-width: 220px;
    margin-bottom: 20px;
}


/* INPUT */
.custom-input {
    background-color: #f6f8fa;
    border: 1px solid #dfe1e5;
    border-radius: 8px;
    padding-right: 40px; /* espaço pro ícone */
}


/* BOTÃO */
.custom-btn {
    background-color: #1F5FAE;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    padding: 12px;
    transition: 0.2s ease;
}

.custom-btn:hover {
    background-color: #174a87;
}


/* ÍCONE SENHA */
.senha-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
}


/* RESPONSIVO */
@media (max-width: 576px) {

    .login-card {
        padding: 20px;
    }

    .login-logo {
        max-width: 160px;
    }

}