/*@import url('https://fonts.googleapis.com/css?family=Damion|Muli:400,600');*/

.field {
    --uiFieldPlaceholderColor: var(--fieldPlaceholderColor, #767676);
}

.field__input {
    background-color: transparent;
    border-radius: 0;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: 1em;
}

    .field__input:focus::-webkit-input-placeholder {
        color: var(--uiFieldPlaceholderColor);
    }

    .field__input:focus::-moz-placeholder {
        color: var(--uiFieldPlaceholderColor);
        opacity: 1;
    }

/*
=====
LEVEL 2. CORE STYLES
=====
*/

.a-field {
    display: inline-block;
}

.a-field__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
}

    .a-field__input:focus {
        outline: none;
    }

/*
=====
LEVEL 3. PRESENTATION STYLES
=====
*/

/* a-field */

.a-field {
    --uiFieldHeight: var(--fieldHeight, 40px);
    --uiFieldBorderWidth: var(--fieldBorderWidth, 2px);
    --uiFieldBorderColor: var(--fieldBorderColor);
    --uiFieldFontSize: var(--fieldFontSize, 1em);
    --uiFieldHintFontSize: var(--fieldHintFontSize, 1em);
    --uiFieldPaddingRight: var(--fieldPaddingRight, 15px);
    --uiFieldPaddingBottom: var(--fieldPaddingBottom, 15px);
    --uiFieldPaddingLeft: var(--fieldPaddingLeft, 15px);
    position: relative;
    box-sizing: border-box;
    font-size: var(--uiFieldFontSize);
    padding-top: 1em;    
}

    .a-field .a-field__input {
        height: var(--uiFieldHeight);
        padding: 0 var(--uiFieldPaddingRight) 0 var(--uiFieldPaddingLeft);
        border-bottom: var(--uiFieldBorderWidth) solid var(--uiFieldBorderColor);        
    }

        .a-field .a-field__input::-webkit-input-placeholder {
            opacity: 0;
            transition: opacity .2s ease-out;
        }

        .a-field .a-field__input::-moz-placeholder {
            opacity: 0;
            transition: opacity .2s ease-out;
        }

        .a-field .a-field__input:not(:placeholder-shown) ~ .a-field__label-wrap .a-field__label {
            opacity: 0;
            bottom: var(--uiFieldPaddingBottom);
        }

        .a-field .a-field__input:focus::-webkit-input-placeholder {
            opacity: 1;
            transition-delay: .2s;
        }

        .a-field .a-field__input:focus::-moz-placeholder {
            opacity: 1;
            transition-delay: .2s;
        }

    .a-field .a-field__label-wrap {
        box-sizing: border-box;
        width: 100%;
        height: var(--uiFieldHeight);
        pointer-events: none;
        cursor: text;
        position: absolute;
        bottom: 0;
        left: 0;        
    }

    .a-field .a-field__label {
        position: absolute;
        left: var(--uiFieldPaddingLeft);
        bottom: calc(50% - .5em);
        line-height: 1;
        font-size: var(--uiFieldHintFontSize);
        pointer-events: none;
        transition: bottom .2s cubic-bezier(0.9,-0.15, 0.1, 1.15), opacity .2s ease-out;
        will-change: bottom, opacity;
    }

    .a-field .a-field__input:focus ~ .a-field__label-wrap .a-field__label {
        opacity: 1;
        bottom: var(--uiFieldHeight);
    }

/* a-field_a1 */

.a-field_a1 .a-field__input {
    transition: border-color .2s ease-out;
    will-change: border-color;
}

    .a-field_a1 .a-field__input:focus {
        border-color: var(--fieldBorderColorActive);
    }

/* a-field_a2 */

.a-field_a2 .a-field__label-wrap:after {
    content: "";
    box-sizing: border-box;
    width: 0;
    height: var(--uiFieldBorderWidth);
    background-color: var(--fieldBorderColorActive);
    position: absolute;
    bottom: 0;
    left: 0;
    will-change: width;
    transition: width .285s ease-out;
}

.a-field_a2 .a-field__input:focus ~ .a-field__label-wrap:after {
    width: 100%;
}


/* a-field_a3 */

.a-field_a3 {
    padding-top: 1.5em;
}

    .a-field_a3 .a-field__label-wrap:after {
        content: "";
        box-sizing: border-box;
        width: 100%;
        height: 0;
        opacity: 0;
        border: var(--uiFieldBorderWidth) solid var(--fieldBorderColorActive);
        position: absolute;
        bottom: 0;
        left: 0;
        will-change: opacity, height;
        transition: height .2s ease-out, opacity .2s ease-out;
    }

    .a-field_a3 .a-field__input:focus ~ .a-field__label-wrap:after {
        height: 100%;
        opacity: 1;
    }

    .a-field_a3 .a-field__input:focus ~ .a-field__label-wrap .a-field__label {
        bottom: calc(var(--uiFieldHeight) + .5em);
    }

/*
=====
LEVEL 4. SETTINGS
=====
*/

.field {
    --fieldBorderColor: #BFB7A8;
    --fieldBorderColorActive: #BFB7A8;
}

.buttonLogin {
    background-color: #3C3C3B;
    color: #FFFFFF;
    border: 1px solid #3C3C3B;
    padding: 6px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    width: 110px;
}

    .buttonLogin:hover {
        background-color: #FFFFFF;
        color: #BFB7A8;
        border: 1px solid #BFB7A8;
    }

.circuloMovil {
    width: 75%;
    height: 30%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #DDDDDD;
    margin: 0 auto;
    margin-top: 50px;
}

@media only screen and (min-width: 550px) {
  .circuloMovil {
    width: 50%;
    height: 30%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #DDDDDD;
    margin: 0 auto;
    margin-top: 50px;
  }
}




