::selection{
    background: #ffffff;
}

::-webkit-selection{
    background: #ffffff;
}

::-moz-selection{
    background: #ffffff;
}

body{
    background: white;
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
}

.page{
    /*background-image: url(\Site\img\banner\fundo_imagem.png);*/
    background: #d7fffde3;
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
    position: absolute;
    place-content: center;
    width: calc(100% - 40px);    
    border-radius: 10px;  
}
@media (max-width: 767px){
    .page{
        height: auto;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

.container{
    display: flex;
    height: 320px;
    width: 640px;
    margin: 0 auto;
}
@media (max-width: 767px){
    .container{
        flex-direction: column;
        height: 630px;
        width: 320px;
    }
}

.left{
    background: rgb(255, 0, 0);
    height: calc(100% - 40px);
    top: 20px;
    position: relative;
    width: 50%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
@media (max-width: 767px){
    .left{
        height: 100%;
        left: 20px;
        width: calc(100% - 40px);
        max-height: 270px;
        border-top-right-radius: 10px;
    }
}

.right{
    background: #078b94;
    box-shadow: 3px 1px 3px 3px rgba(0, 0, 0, 0.7);
    position: relative;
    width: 50%;
    border-radius: 10px;
}
@media (max-width: 767px){
    .right{
        flex-shrink: 0;
        height: 55%;
        width: 100%;
        max-width: 350px;
        border-radius: 10px;        
    }
}

.login{
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    margin: 50px 40px 40px;
    text-align: center;
}

.eula{
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 15px;
    text-align: center;
}
span{
    font-weight: 700;
    font-size: 17px;
}

svg{
    position: absolute;
    width: 320px;
}

path{
    fill: none;
    stroke: url(#linearGradient);;
    stroke-width: 4;
    stroke-dasharray: 240 1386;
}

.form{
    margin: 40px;
    position: absolute;
}

label{
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 600;
    height: 16px;
    margin-top: 20px;
    margin-bottom: 5px;
}

input{
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    outline: none !important;
    width: 100%;
}

input::-moz-focus-inner{
    border: 0;
}

#toEnter{
    color: #c0c0c0;
    margin-top: 40px;
    transition: color 300ms;
}

#toEnter:focus{
    color: #ffffff;
}

#toEnter:active{
    color: #ffffff;
}

#toForget{
    font-size: 16px;
    color: #c0c0c0;
    margin-top: 20px;
}
#toForget:focus{
    color: #ffffff;
}
#toForget:active{
    color: #ffffff;
}

dialog{
    border-radius: 10px;
    border: #078b94 solid 1px;
    font-size: 15px;
    color: #fff;
    background-color: #a50808;
}