header {
    background: linear-gradient(to right, #85b4d338, #85b4d3);
    height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw;
    height: 100vh;
}

header div.innerHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    height: 100%;
    padding: 0.5vw;
    position: relative;
}

header div.leftSection {
    width: 55vw;
    display: flex;
    overflow: hidden;
    height: 96vh;
    border-radius: 10px;
    position: relative;
}

header div.leftSection video {
    height: 100%;
    pointer-events: none;
    object-fit: fill;
    overflow: hidden;
    filter: brightness(60%);
}

header div.leftSection h1.titleLeftSection {
    z-index: 2;
    position: absolute;
    color: white;
    mix-blend-mode: soft-light;
    font-size: 5rem;
    left: 2vw;
    top: 2vh;
}

header div.leftSection p.descLeftSection {
    position: absolute;
    color: white;
    bottom: 2vh;
    font-size: 1.1rem;
    width: 100%;
    padding: 0 2vw;
}

header div.rightSection {
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

header div.rightSection form.containerCodes {
    width: 35vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header div.rightSection form.containerCodes div.code input{
    width: 7vw;
    height: 7vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5vw;
    border: 1px solid #d3d3d3;
    color: transparent;
    text-shadow: 0 0 0 #000000;
    border-radius: 20px;
    font-size: 5vw;
    text-align: center;
    font-family: 'Montaga', serif;
    transition: all 0.3s ease-in-out;
}

header div.rightSection form.containerCodes div.code input:focus{
    border: 1px solid #36ade9;
    outline: none;
}

header div.rightSection form.containerCodes div.code input::-webkit-outer-spin-button,
header div.rightSection form.containerCodes div.code input::-webkit-inner-spin-button {

    -webkit-appearance: none;
    margin: 0;
}

header div.rightSection h1.titleRightSection {
    text-align: center;
    margin-bottom: 5vh;
    text-transform: uppercase;
    font-weight: 500;
}

p.forgotPassword {
    text-align: center;
    margin-top: 2.5vh;
    color: #4a4949;
    border-bottom: 1px solid #d3d3d3;
    width: fit-content;
    margin: 2.5vh auto 0;
}