main{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#login-bg{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    animation: kenburns 60s infinite;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.5) translate(0, 0);
    }
}

#shadow{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 1; */
}

#form-container{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 2; */
}

#form-small{
    width: 90%;
    max-width: 400px;
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.3); */
    border-radius: 5px;
}

#logo-epap{
    display: inline-block;
    width: 150px;
    height: auto;
    margin-bottom: calc(var(--generalSpacing) * 2);
}

.row-field{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: calc(var(--generalSpacing) / 2);
}

.row-field-icon{
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--governmentBlue);
    padding: calc(var(--generalSpacing) / 2) calc(var(--generalSpacing) / 4);
    border-radius: 6px 0 0 6px;
}

.row-field-icon img{
    height: 25px;
    width: auto;
}

.row-field input[type="text"], .row-field input[type="password"]{
    width: 85%;
    padding: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0 6px 6px 0;
    outline: none;
    transition: var(--transitionAll);
}

.row-field input[type="text"]:hover, .row-field input[type="password"]:hover{
    background-color: rgba(255, 255, 255, 0.4);
}

.row-field input[type="text"]:focus, .row-field input[type="password"]:focus{
    background-color: rgba(255, 255, 255, 1);
}

.row-field input[type="text"]::placeholder, .row-field input[type="password"]::placeholder{
    color: var(--grayLight);
}

#show-password-container{
    justify-content: flex-end;
    font-size: small;
    color: var(--white);
}

#credits{
    color: var(--white);
    font-size: small;
    text-align: center;
    margin-top: calc(var(--generalSpacing) * 2);
}
