﻿textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
    -webkit-appearance: none;
}

::selection {
    background: #2cc3ff;
    color: #15539c;
}

.ui-helper-hidden-accessible div:last-child {
    display: none;
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    background: #fff;
    color: #666;
    font-weight: bold;
    border-radius: 3px;
    top: -20px;
}

body .ui-tooltip {
    border-width: 2px;
}

:root {
    --azul-claro: #2cc3ff;
    --azul-padrao: #0074ff;
    --azul-escuro: #15539c;
    --azul-escuro-pastel: #3a5575;
    --verde-receita: #2bd142;
    --laranja-despesa: #f26522;
    --roxo-meta: #a864a8;
    --vermelho: #e94a50;
}

* {
    background-position: 0 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Open sans', sans-serif;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #ccc;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #ccc;
}

html {
    font-size: 62.5%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #eee;
    -webkit-overflow-scrolling: touch;
}

    html::-webkit-scrollbar {
        width: 8px;
        height: 10px;
    }

    html::-webkit-scrollbar-track {
        background-color: #15539c;
    }

    html::-webkit-scrollbar-thumb {
        background-color: #0074ff;
    }

body {
    background-color: #0074ff;
}

    body *::-webkit-scrollbar {
        width: 8px;
        height: 10px;
    }

    body *::-webkit-scrollbar-track {
        background-color: #fff;
    }

    body *::-webkit-scrollbar-thumb {
        background-color: #ececec;
    }



body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, a {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
}

.itemForm {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: 12px;
    font-weight: 800;
    position: relative;
}

.inputPadrao {
    border: 2px solid #e5e5e5;
    border-radius: 3px;
    padding: 10px 15px;
    font-size: 12px;
    color: #15539c;
    font-weight: 600;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    resize: none;
}

    .inputPadrao:focus {
        border: 2px solid #2cc3ff;
        -webkit-box-shadow: 0px 10px 36px 0px rgba(0,0,0,0.26);
        -moz-box-shadow: 0px 10px 36px 0px rgba(0,0,0,0.26);
        box-shadow: 0px 10px 36px 0px rgba(0,0,0,0.26);
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.btPadrao {
    padding: 10px 20px;
    border-radius: 3px;
    background-color: #0074ff;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    border: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

    .btPadrao:hover {
        background-color: #15539c;
    }

a, button {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    cursor: pointer;
}

.lateralLogin {
    width: 350px;
    position: absolute;
    left: -50px;
    bottom: 0;
    top: 0;
    min-height: 600px;
    background: #fff;
    display: flex;
    align-items: center;
    animation-name: showLogin;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0s;
}

@keyframes showLogin {
    from {
        left: -50px;
        opacity: 0;
    }

    to {
        left: 0;
        opacity: 1;
    }
}

.lateralLogin .bgLogin {
    overflow: hidden;
    padding: 45px;
    background: #fff;
    width: 100%;
    margin-top: -30px;
}

    .lateralLogin .bgLogin .logo {
        width: 75%;
        height: 60px;
        /* Só é utilizado no Login, e é retirado quando é WL */
        background-image: url(../Images/LogoSigeCloudColorido.svg);
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 55px;
    }

    .lateralLogin .bgLogin h2 {
        font-size: 13px;
        font-weight: 900;
        color: #00397c;
        text-transform: uppercase;
    }

    .lateralLogin .bgLogin p {
        font-size: 13px;
        color: #666;
    }

    .lateralLogin .bgLogin .itemForm {
        color: #15539c;
        margin-bottom: 0;
        margin-top: 20px;
    }

        .lateralLogin .bgLogin .itemForm input {
            font-weight: 300;
        }

    .lateralLogin .bgLogin .link {
        color: #2cc3ff;
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .lateralLogin .bgLogin .btPadrao {
        width: 100%;
        background-color: #d0ddeb;
        text-transform: uppercase;
        font-size: 11px;
    }

    .lateralLogin .bgLogin .btPadraoAtivado {
        width: 100%;
        background: #2bd142;
        cursor: pointer;
    }

    .lateralLogin .bgLogin .btCancelar {
        width: 100%;
        background: #fff;
        border: 1px solid #2cc3ff;
        font-size: 11px;
        color: #0074ff;
    }

    .lateralLogin .bgLogin h4 {
        font-size: 10px;
        font-weight: 900;
        color: #15539c;
        text-transform: uppercase;
        width: 100%;
        margin: 30px 0 10px 0;
        text-align: center;
    }

    .lateralLogin .bgLogin .btLoginGoogle {
        background-color: #fff;
        border: 2px solid #ccc;
        color: #666;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

        .lateralLogin .bgLogin .btLoginGoogle svg {
            width: 20px;
            margin-right: 10px;
        }

.bgNaoTenhoCadastro {
    background: #15539c;
    padding: 45px;
    position: fixed;
    right: -50px;
    bottom: 0;
    opacity: 0;
    width: 400px;
    animation-name: showBgExperimente;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 0.3s;
}

@keyframes showBgExperimente {
    from {
        right: -50px;
        opacity: 0;
    }

    to {
        right: 0;
        opacity: 1;
    }
}

.bgNaoTenhoCadastro h4 {
    color: #2cc3ff;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 20px;
}

.bgNaoTenhoCadastro .texto {
    color: #fff;
    font-size: 12px;
}

.bgNaoTenhoCadastro .btPadrao {
    color: #fff;
    font-size: 10px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background-color: #2bd142;
}

    .bgNaoTenhoCadastro .btPadrao:hover {
        background-color: #fff;
        color: #2bd142;
    }

.bgNaoTenhoCadastro .copyright {
    color: #2cc3ff;
    font-size: 11px;
}

.imgFundo {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    left: 350px;
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-color: #0074ff;
    animation-name: showImage;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-delay: 0.6s;
}

@keyframes showImage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.inputErro {
    border-color: #f26522 !important;
}

.msgErro {
    width: 100%;
    border-radius: 3px;
    background: #f26522;
    padding: 10px 15px;
    font-size: 13px;
    margin-top: 10px;
    color: #fff;
}
.errorIE {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 2%;
    border-radius: 3px;
    padding: 35px 30px;
    font-size: 15px;
    font-family: 'Open sans', sans-serif;
    font-weight:bold;
    color: #D8000C;
    background-color: #FFBABA;
}

@media only screen and (max-width: 1023px) {
    .lateralLogin {
        min-height: unset;
        width: 100%;
        position: relative;
        animation-name: unset;
        left: 0;
    }

        .lateralLogin .bgLogin {
            margin-top: unset;
            padding-left: 9vw;
            padding-right: 9vw;
        }

            .lateralLogin .bgLogin * {
                text-align: center;
            }

            .lateralLogin .bgLogin .logo {
                margin-left: 12.5%;
            }

    .bgNaoTenhoCadastro {
        position: unset;
        width: 100%;
        padding-left: 9vw;
        padding-right: 9vw;
        animation-name: unset;
        opacity: 1;
    }

        .bgNaoTenhoCadastro * {
            text-align: center;
        }

    .lateralLogin .bgLogin .btPadrao {
        font-size: 13px !important;
        height: 45px;
    }

    .imgFundo {
        display: none;
    }
}



.google_signin_button {
    width: 191px;
    height: 46px;
    display: inline-block;
    background-image: url('/Images/google_signin_buttons/new_btn_google_signin_light_normal_web.png') !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: transparent !important;
}

    .google_signin_button:focus {
        background-image: url('/Images/google_signin_buttons/new_btn_google_signin_light_focus_web.png') !important;
    }

    .google_signin_button:active {
        background-image: url('/Images/google_signin_buttons/new_btn_google_signin_light_pressed_web.png') !important;
    }

.politicaPrivacidade {
    text-align: center;
    color: #888888;
}

    .politicaPrivacidade :visited {
        color: #888888;
    }

/* ============================================================
   LOGIN — Modernização visual  (mantém estrutura de layout)
   ============================================================ */

/* Inputs mais modernos: fundo sutil, bordas arredondadas, ícone */
.inputPadrao {
    border: 1.5px solid #dce6f5;
    border-radius: 10px;
    padding: 12px 16px 12px 44px;
    font-size: 13px;
    height: 46px;
    background-color: #f7f9ff;
    -webkit-transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    -moz-transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    -o-transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

    .inputPadrao:focus {
        border-color: #0074ff;
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 0 3px rgba(0, 116, 255, 0.12);
        -moz-box-shadow: 0 0 0 3px rgba(0, 116, 255, 0.12);
        box-shadow: 0 0 0 3px rgba(0, 116, 255, 0.12);
    }

/* Ícone de envelope no campo e-mail */
input[type="text"].inputPadrao {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0c4de' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpolyline points='2%2C4 12%2C13 22%2C4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 13px center;
}

/* Ícone de cadeado no campo senha */
input[type="password"].inputPadrao {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0c4de' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3Ccircle cx='12' cy='16' r='1' fill='%23b0c4de' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: 14px center;
}

/* Label: discreta, maiúscula, com espaçamento */
.lateralLogin .bgLogin .itemForm {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #7a9cbf;
}

/* Botão principal: gradiente, arredondado, elevação no hover */
.lateralLogin .bgLogin .btPadraoAtivado {
    border-radius: 10px;
    height: 46px;
    background: -webkit-linear-gradient(135deg, #2bd142 0%, #1fa832 100%);
    background: -moz-linear-gradient(135deg, #2bd142 0%, #1fa832 100%);
    background: -o-linear-gradient(135deg, #2bd142 0%, #1fa832 100%);
    background: linear-gradient(135deg, #2bd142 0%, #1fa832 100%);
    font-size: 12px;
    letter-spacing: 0.8px;
    -webkit-box-shadow: 0 4px 14px rgba(43, 209, 66, 0.35);
    -moz-box-shadow: 0 4px 14px rgba(43, 209, 66, 0.35);
    box-shadow: 0 4px 14px rgba(43, 209, 66, 0.35);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .lateralLogin .bgLogin .btPadraoAtivado:hover {
        background: -webkit-linear-gradient(135deg, #30e049 0%, #23bf39 100%);
        background: -moz-linear-gradient(135deg, #30e049 0%, #23bf39 100%);
        background: linear-gradient(135deg, #30e049 0%, #23bf39 100%);
        -webkit-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
        -webkit-box-shadow: 0 6px 20px rgba(43, 209, 66, 0.45);
        -moz-box-shadow: 0 6px 20px rgba(43, 209, 66, 0.45);
        box-shadow: 0 6px 20px rgba(43, 209, 66, 0.45);
    }

/* Título "Acesse sua Conta" */
.lateralLogin .bgLogin h2 {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

/* Link "Esqueceu sua senha?" */
.lateralLogin .bgLogin .link {
    font-size: 11px;
    font-weight: 600;
    color: #0074ff;
    opacity: 0.75;
}

    .lateralLogin .bgLogin .link:hover {
        opacity: 1;
        text-decoration: underline;
    }

/* Mensagem de erro: mais arredondada */
.msgErro {
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
