﻿.imagem-fundo {
    width: 100%;
    height: 100%;
    
}

.login-wrapper {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-image: url('../imagens/fundo1.png');
    background-size:cover; /* <------ */
    background-repeat: no-repeat;
    background-position: right center;
}


.div-direita {
    width: 100%;
    height: 100%;
    background-image: url('../imagens/fundo2.png');
    background-size: cover; /* <------ */
    background-repeat: no-repeat;
    background-position: right center;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    
}

.vertical-center {
    min-height: 100%; /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */
    display: flex;
    align-items: center;
   
}

.card-centro {
    -webkit-box-shadow: 0px -3px 13px -4px rgba(207,203,207,1);
    -moz-box-shadow: 0px -3px 13px -4px rgba(207,203,207,1);
    box-shadow: 0px -3px 13px 0px rgba(207,203,207,1);
}
.btn-entrar{
    width:150px;
}
.hr-laranja {
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #F4762F;
    margin: 1em 0;
    padding: 0;
    max-width:250px;
}

.div-esquerda {
    background-color: #45156b;
    -moz-border-radius-topleft: 10px;
/*    -moz-border-radius-topright: 5px;*/
/*    -moz-border-radius-bottomright: 0px;*/
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-top-left-radius: 10px;
/*    -webkit-border-top-right-radius: 5px;*/
/*    -webkit-border-bottom-right-radius: 0px;*/
    -webkit-border-bottom-left-radius: 10px;

    padding-top:35px!important;
}
.rounded-login {
    -moz-border-radius-topleft: 10px !important;
    -moz-border-radius-topright: 10px !important;
    -moz-border-radius-bottomright: 10px !important;
    -moz-border-radius-bottomleft: 10px !important;
    -webkit-border-top-left-radius: 10px !important;
    -webkit-border-top-right-radius: 10px !important;
    -webkit-border-bottom-right-radius: 10px !important;
    -webkit-border-bottom-left-radius: 10px !important;
    border-radius:10px!important;
}

.input-login {
/*    margin: 40px 25px;*/
    width: 100%!important;
    display: block;
    border: none;
/*    padding: 10px 0;*/
    padding-top:15px;
    border-bottom: solid 1px #f4762f;
    -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #f4762f 4%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #f4762f 4%);
    background-position: -800px 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: white;
}

    .input-login:focus, .input-login:valid {
        box-shadow: none;
        outline: none;
        background-position: 0 0;
    }

        .input-login:focus::-webkit-input-placeholder, .input-login:valid::-webkit-input-placeholder {
            color: white;
            font-size: 12px;
            -webkit-transform: translateY(-20px);
            transform: translateY(-30px);
            visibility: visible !important;
        }


::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: white;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: white;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: white;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
}

::placeholder { /* Most modern browsers support this now. */
    color: white;
}


.p-1{
    margin-top:20px;
    font-size:10pt;
    color:#45156b;
    padding-left:15px!important;
}

.p-2 {
    font-size: 16pt;
    color: #45156b;
    max-width: 250px;
    font-weight: bold;
    padding-left: 15px !important;
}

.p-3 {
    color: #45156b;
    padding-left: 15px !important;
}






.pure-material-checkbox {
    z-index: 0;
    position: relative;
    display: inline-block;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
    font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
}

    /* Input */
    .pure-material-checkbox > input {
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        z-index: -1;
        position: absolute;
        left: -10px;
        top: -8px;
        display: block;
        margin: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
        box-shadow: none;
        outline: none;
        opacity: 0;
        transform: scale(1);
        pointer-events: none;
        transition: opacity 0.3s, transform 0.2s;
    }

    /* Span */
    .pure-material-checkbox > span {
        display: inline-block;
        width: 100%;
        cursor: pointer;
        color:white;
        font-size:8pt;
        padding-top:4px;
    }

        /* Box */
        .pure-material-checkbox > span::before {
            content: "";
            display: inline-block;
            box-sizing: border-box;
            margin: 3px 11px 3px 1px;
            border: solid 2px; /* Safari */
            border-color: rgba(var(--pure-material-onsurface-rgb, 255,255, 255), 0.6);
            border-radius: 2px;
            width: 18px;
            height: 18px;
            vertical-align: top;
            transition: border-color 0.2s, background-color 0.2s;
            margin-top:-3px
        }

        /* Checkmark */
        .pure-material-checkbox > span::after {
            content: "";
            display: block;
            position: absolute;
            top: 5px;
            left: 2px;
            width: 10px;
            height: 5px;
            border: solid 2px transparent;
            border-right: none;
            border-top: none;
            transform: translate(3px, 4px) rotate(-45deg);
        }

    /* Checked, Indeterminate */
    .pure-material-checkbox > input:checked,
    .pure-material-checkbox > input:indeterminate {
        background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    }

        .pure-material-checkbox > input:checked + span::before,
        .pure-material-checkbox > input:indeterminate + span::before {
            border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
            background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
        }

        .pure-material-checkbox > input:checked + span::after,
        .pure-material-checkbox > input:indeterminate + span::after {
            border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
        }

        .pure-material-checkbox > input:indeterminate + span::after {
            border-left: none;
            transform: translate(4px, 3px);
        }

    /* Hover, Focus */
    .pure-material-checkbox:hover > input {
        opacity: 0.04;
    }

    .pure-material-checkbox > input:focus {
        opacity: 0.12;
    }

    .pure-material-checkbox:hover > input:focus {
        opacity: 0.16;
    }

    /* Active */
    .pure-material-checkbox > input:active {
        opacity: 1;
        transform: scale(0);
        transition: transform 0s, opacity 0s;
    }

        .pure-material-checkbox > input:active + span::before {
            border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
        }

    .pure-material-checkbox > input:checked:active + span::before {
        border-color: transparent;
        background-color: rgba(var(--pure-material-onsurface-rgb, 255, 255,255), 0.6);
    }

    /* Disabled */
    .pure-material-checkbox > input:disabled {
        opacity: 0;
    }

        .pure-material-checkbox > input:disabled + span {
            color: rgba(var(--pure-material-onsurface-rgb, 255, 255,255), 0.38);
            cursor: initial;
        }

            .pure-material-checkbox > input:disabled + span::before {
                border-color: currentColor;
            }

    .pure-material-checkbox > input:checked:disabled + span::before,
    .pure-material-checkbox > input:indeterminate:disabled + span::before {
        border-color: transparent;
        background-color: currentColor;
    }
