:root{
    --app-color-1:#FFFFFF;
    --app-color-2:#00444D;
    --header-padding:1.313rem 3.063rem;
    --header-height:6.916rem;
}
html,body{
    padding: 0;
    margin: 0;
}
header{
    border-bottom: unset !important;
}
.background{
    position: absolute;
    width: 100%;
    z-index: -1;
}
.error{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
    background-color: #f33131;
    font-weight: 700;
    color: #000000;
}
form{
    width: fit-content;
    height: fit-content;
    margin: 6rem auto;
    padding: 4rem;
    border-radius: 0.3rem;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 0.75rem -0.063rem #dfdfdf;
    -moz-box-shadow: 0px 0px 0.75rem -0.063rem #dfdfdf;
    box-shadow: 0px 0px 0.75rem -0.063rem #dfdfdf;
    display: flex;
    flex-direction: column;

    >span{
        color: #0C0C0D;
        font-size: 1.938rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    >label{
        color: #0C0C0D;
        font-size: 0.813rem;
        font-weight: 400;
        margin-bottom: 0.375rem;
    }

    > input,
    > div.input-container > input{
        color: #0C0C0D;
        font-size: 1rem;
        font-weight: 400;
        padding: 0.75rem 1.125rem;
        border: 0.1rem solid #E3E4E5;
        border-radius: 0.313rem;
        width: 100%;
    }
    > div.input-container{
        display: block;
        width: 100%;
        position: relative;
        border: 0.1rem solid #E3E4E5;
        border-radius: 0.313rem;
        overflow: hidden;

        >input{
            border: unset;
        }

        .toggle-password{
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 0.5rem;
            cursor: pointer;
            border-top-right-radius: 0.2rem;
            border-bottom-right-radius: 0.2rem;

            svg:first-child{
                display: inline;
            }
            svg:last-child{
                display: none;
            }
            svg{
                pointer-events: none;
            }
        }
        .toggle-password.show{
            svg:first-child{
                display: none;
            }
            svg:last-child{
                display: inline;
            }
        }
        .toggle-password:hover{
            background-color: #dddbdb;
        }
    }

    .empty-separator{
        clear: both;
        margin: 0.5rem 0;
    }

    .submit-container{
        display: flex;

        div{
            flex-grow: 1;
        }

        input{
            width: 100%;
            padding: 0.75rem 1.125rem;
            background-color: #005660;
            color: #FFFFFF;
            border: unset;
            border-radius: 0.5rem;
            font-weight: 400;
            font-size: 1rem;
            text-align: center;
        }
        input:hover{
            filter: brightness(0.8);
            cursor: pointer;
        }
    }
}