* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: transparent;
}



.caixa-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.caixa-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Camada escura sobre o vídeo */
.mascara {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}


.container {
    position: relative;
    z-index: 2;
    width: 420px;
    background: (141, 74, 11, 0.95);
    border-radius: 10px;
    padding: 30px 40px;
    color: #f0e6e6;
}


.container h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #f0e6e6;
}

.input-box {
    width: 100%;
    margin: 15px 0;
    color: #f0e6e6;
}

.input-box input {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 40px;
    padding: 0 20px;
    background: #f0e6e6;
}

.remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin: 15px 0;
}

.remember label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.forgot {
    color: #ac6c0d;
    text-decoration: none;
    font-weight: bold;
}

.forgot:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 40px;
    background: #ac6c0d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.register {
    text-align: center;
    margin-top: 20px;
}

.register a {
    text-decoration: none;
    
  
    color: #ac6c0d;
    font-weight: bold;
}


