﻿/* CSS Login, usado classes customizadas (Alvotec) */
/* ================================================================================ */

/*#region === Altura dos itens de login responsive ===  */

.alturaLogin {
    margin-top: 20px;
}

@media (max-width: 576px) {
    .alturaLogin {
        margin-top: 10px;
    }
}

@media (min-width: 577px) and (max-width: 767px) {
    .alturaLogin {
        margin-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .alturaLogin {
        margin-top: 55px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .alturaLogin {
        margin-top: 70px;
    }
}

@media (min-width: 1200px) and (max-width: 1899px) {
    .alturaLogin {
        margin-top: 40px;
    }
}

@media (min-width: 1900px) {
    .alturaLogin {
        margin-top: 150px;
    }
}

/*#endregion */

/*#region === Msg Obrigatorio Login ===  */
.msgObrigatorioLogin {
    color: #FFE74C;
    font-size: 12px;
    margin-left: 50px;
    position: relative;
    top: -13px
}
/*#endregion */

/*#region === Limiter e Container ===  */
.limiter-alvotec {
    width: 100%;
    margin: 0 auto;
}

.formulario-login {
    display: flex;
    justify-content: center;
}

.container-login-alvotec {
    background: #0d1a27;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

/*#endregion */

/*#region === Login Form ===  */
.wrap-login-alvotec {
    width: 390px;
    background: transparent;
}

.login-alvotec-form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login-alvotec-form-title {
    font-family: "Nunito";
    font-size: 24px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
}

.login-alvotec-form-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

    .login-alvotec-form-avatar img {
        width: 100%;
    }

@media (max-width: 576px) {
    .wrap-login-alvotec {
        padding-top: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*#endregion */

/*#region === Input e symbol ===  */
.wrap-input-alvotec {
    position: relative;
    width: 100%;
    z-index: 1;
}

.input-alvotec {
    font-family: "Nunito";
    font-size: 18px;
    line-height: 1.2;
    color: #333333;
    display: block;
    width: 100%;
    background: #fff;
    height: 45px;
    border-radius: 25px;
    padding: 0 30px 0 53px;
}

input {
    outline: none;
    border: none;
}

.focus-input-alvotec {
    display: block;
    position: relative;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(232,152,60, 0.3);
}

.input-alvotec:focus + .focus-input-alvotec {
    -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
    animation: anim-shadow 0.5s ease-in-out forwards;
}


.symbol-input-alvotec {
    font-size: 15px;
    color: #999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 25px;
    bottom: 32px;
    left: 0;
    padding-left: 30px;
    pointer-events: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input-alvotec:focus + .focus-input-alvotec + .symbol-input-alvotec {
    color: #f07b30;
    padding-left: 23px;
}
/*#endregion */

/*#region === Botoes Parte I ===  */
button {
    outline: none !important;
    border: none;
    background: transparent;
}

    button:hover {
        cursor: pointer;
    }

.container-login-alvotec-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login-alvotec-form-btn {
    font-family: "Nunito";
    font-size: 28px;
    line-height: 1.5;
    color: #fff;
    width: 100%;
    height: 45px;
    border-radius: 25px;
    background: #f07b30;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

    .login-alvotec-form-btn::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        border-radius: 25px;
        top: 0;
        left: 0;
        background: #005bea;
        background: -webkit-linear-gradient(left, #f07b30, #e8983c );
        background: -o-linear-gradient(left, #f07b30, #e8983c );
        background: -moz-linear-gradient(left, #f07b30, #e8983c );
        background: linear-gradient(left, #f07b30, #e8983c );
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
        opacity: 0;
    }

    .login-alvotec-form-btn:hover {
        background: transparent;
        color: #fff;
    }

        .login-alvotec-form-btn:hover:before {
            opacity: 1;
        }
/*#endregion */

/*#region === Botoes Parte II */

/*------------------------------------------Botão Verde Claro-------------------------------------------------*/
.btnVerdeClaroII {
    color: #FFFFFF;
    background-color: #376c72;
    border-color: #376c72;
}

    .btnVerdeClaroII:hover,
    .btnVerdeClaroII:focus,
    .btnVerdeClaroII:active,
    .btnVerdeClaroII.active,
    .open .dropdown-toggle.btnVerdeClaroII {
        color: #FFFFFF;
        background-color: #589198;
        border-color: #589198;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(26,52,78, 1%);
    }

/*#endregion */

/*#region === keyframes anim-shadow === */
@-webkit-keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 80px 30px;
        opacity: 0;
    }
}

@keyframes anim-shadow {
    to {
        box-shadow: 0px 0px 80px 30px;
        opacity: 0;
    }
}
/*#endregion */

/*#region === Display None === */

.displayNone {
    display: none;
}

/*#endregion */

/*#region === bootstrap Alert customizada e Overrride=== */

.alertaBootstrapDanger {
    border-left: #721C24 5px solid;
    border-radius: 5px;
}

.alert {
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.11);
    display: table;
    width: 100%;
}

.alert-white {
    color: #404040;
    padding-left: 61px;
    position: absolute;
}

    .alert-white.rounded {
        border-radius: 3px;
        -webkit-border-radius: 3px;
    }

        .alert-white.rounded .icon {
            border-radius: 3px 0 0 3px;
            -webkit-border-radius: 3px 0 0 3px;
        }

    .alert-white .icon {
        text-align: center;
        width: 45px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid #bdbdbd;
        padding-top: 15px;
    }


        .alert-white .icon:after {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            display: block;
            content: '';
            width: 10px;
            height: 10px;
            border: 1px solid #bdbdbd;
            position: absolute;
            border-left: 0;
            border-bottom: 0;
            top: 50%;
            right: -6px;
            margin-top: -3px;
            background: #fff;
        }

        .alert-white .icon i {
            font-size: 20px;
            color: #fff;
            left: 12px;
            margin-top: -10px;
            position: absolute;
            top: 50%;
        }
/*============ colors ========*/
.alert-success {
    color: #3c763d;
    background-color: #fcfcfc;
    border-color: #d6e9c6;
}

.alert-white.alert-success .icon,
.alert-white.alert-success .icon:after {
    border-color: #54a754;
    background: #60c060;
}

.alert-info {
    background-color: #fcfcfc;
    border-color: #98cce6;
    color: #3a87ad;
}

.alert-white.alert-info .icon,
.alert-white.alert-info .icon:after {
    border-color: #3a8ace;
    background: #4d90fd;
}


.alert-white.alert-warning .icon,
.alert-white.alert-warning .icon:after {
    border-color: #d68000;
    background: #fc9700;
}

.alert-warning {
    background-color: #fcfcfc;
    border-color: #f1daab;
    color: #c09853;
}

.alert-danger {
    background-color: #fcfcfc;
    border-color: #e0b1b8;
    color: #b94a48;
}

.alert-white.alert-danger .icon,
.alert-white.alert-danger .icon:after {
    border-color: #ca452e;
    background: #da4932;
}

/*#endregion */

/*#region === Ajuste de Posicao bootstrap Alert Customizado=== */

.justificaMsgAlerta {
    justify-content: center;
}

/*#endregion */

/*#region === Cursor === */

.cursorPointer {
    cursor: pointer;
}

.cursorDesabiltado {
    cursor: not-allowed;
}

/*#endregion */
