﻿/*@import url(http://fonts.googleapis.com/css?family=Open+Sans|Open+Sans+Condensed:300,700);*/

@font-face {
    font-family: 'fontello';
    src: url('fonts/fontello.eot?0000');
    src: url('fonts/fontello.eot?0000#iefix') format('embedded-opentype'), url('fonts/fontello.woff2?0000') format('woff2'), url('fonts/fontello.woff?0000') format('woff'), url('fonts/fontello.ttf?0000') format('truetype'), url('fonts/fontello.svg?0000#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fuente Intitucional';
    src: url('fonts/Roboto-Light.ttf?0000') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.group {
    position: relative;
    margin-bottom: 10px;
    /*margin-left: 10px;*/
    height: auto;
}

.inputBox {
    font-family: 'Fuente Intitucional', 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 18px;
    padding: 7px 7px 7px 10px;
    display: flex;
    width: 100% !important;
    height: 50px;
    border: 1.2px solid rgba(0,0,0,0.3);
    border-radius: 5px;
    color: #333;
    margin-bottom: 40px;
    border-radius: 5px;
    transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    -webkit-transition: all .4s;
}

    .inputBox:focus {
        outline: none;
        border-radius: 5px 5px 0px 0px;
    }

    .inputBox:hover {
        border: 1.2px solid var(--color-institucional);
    }
/* LABEL ======================================= */
.group label {
    color: #999;
    font-family: 'Fuente Intitucional', 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: normal;
    padding-left: 10px;
    position: absolute;
    text-align: left;
    pointer-events: none;
    width: 100%;
    top: 13px;
    left: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.inputBox:focus ~ label {
    margin-top: -40px;
    left: 0px;
    font-size: 17px;
    color: #006699;
}

.fijar {
    margin-top: -40px;
    left: 0px;
    font-size: 17px;
}
/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: auto;
    bottom: 0px;
}

    .bar:before, .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 40px;
        position: absolute;
        background: var(--color-institucional); /*#009688; */
        opacity: 0.8;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    .bar:before {
        left: 50%;
    }

    .bar:after {
        right: 50%;
    }

/* active state */
.inputBox:focus ~ .bar:before, .inputBox:focus ~ .bar:after {
    width: 50%;
}
/* active state */
.inputBox:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}
/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

.blanco {
    color: white;
}

.group .text-danger {
    font-family: 'Fuente Intitucional', sans-serif;
    font-size: 16px;
    font-style: italic;
    padding-top: 2px;
    padding-right: 10px;
    padding-left: 10px;
    float: right;
    /*position: absolute;*/
}

.text-danger {
    text-align: left;
}

.validation-summary-errors {
    background: #dc3545;
    color: white !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    position: absolute;
    height: 30px;
    width: 97%;
    margin-top: 50px !important;
    margin: 10px 10px;
    padding: 0px 20px 0px 0px;
    -webkit-box-shadow: 0px 10px 14px -9px rgba(0,0,0,0.23);
    -moz-box-shadow: 0px 10px 14px -9px rgba(0,0,0,0.23);
    box-shadow: 0px 10px 14px -9px rgba(0,0,0,0.23);
}

    .validation-summary-errors ul {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

.Texto_Registro {
    margin-top: 5px;
    border: 1px;
    border-color: var(--color-institucional);
}

    .Texto_Registro a {
        color: var(--color-institucional);
        padding: 8px 20px;
        border-radius: 10px;
        transition: all .4s linear;
        -moz-transition: all .4s linear;
        -ms-transition: all .4s linear;
        -o-transition: all .4s linear;
        -webkit-transition: all .4s linear;
    }

        .Texto_Registro a:hover {
            background: var(--color-institucional);
            color: whitesmoke;
            font-style: normal;
            text-decoration: none;
            /*background: white;*/
        }
