@font-face {
    font-family: 'CadizRegular';
    src: url('../font/Cadiz-Regular.eot');
    src: local('Cadiz'), local('Cadiz-Regular'),
        url('../font/Cadiz-Regular.eot?#iefix') format('embedded-opentype'),
        url('../font/Cadiz-Regular.woff2') format('woff2'),
        url('../font/Cadiz-Regular.woff') format('woff'),
        url('../font/Cadiz-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


:root {
    --backgroundColor: #fff;
    /*--primaryColor: #03a9f4;
  --accent2Color: #8bc34a;*/
    --primaryColor: #184887;
    --primaryShadowColor: #88D2E4;
    --accent2Color: #184887;
    --grayColor: #999;
}


html,
body {
    height: 100dvh;
    width: 100%;
    margin: 0;
    font-family: 'CadizRegular';
    font-weight: 400;
    font-style: normal;
    background-color: white;
    background-image: url("../img/Mon-Clinic-Texturas-4.jpg");
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}



div.container {
    min-width: 100%;
    margin: 0;
    padding: 0;
    padding-top: 10%;
}

.login {
    background-color: white;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(51, 51, 51, 0.2);
}

.login>form {
    text-align: left;
    opacity: 0;
    -webkit-animation: greeting--animate-in 0.4s 2.4s both ease;
    animation: greeting--animate-in 0.4s 2.4s both ease;
}

@-webkit-keyframes greeting--animate-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes greeting--animate-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {

    html,
    body {
        background-image: none;
    }

    div.container {
        padding: 0;
    }

    .formulario {
        margin: 0px;
        padding: 0px;
    }

    .login {
        box-shadow: none;
    }
}

.checkbox {
    position: relative;
    user-select: none;
    margin-bottom: 10px;
}

.checkbox input {
    display: none;
}

.checkbox label {
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    font-weight: 500;
    padding-left: 35px;
}

.checkbox span.box {
    display: inline-block;
    width: 20px;
    border-radius: 0px;
    border: 1px solid var(--grayColor);
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 3px;
    transition: 0.3s ease;
    position: absolute;
    left: 0;
}

.checkbox span.box:before,
.checkbox span.box:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 16px;
    border-radius: 40px;
    background: var(--backgroundColor);
    transition: all 0.3s ease;
}

.checkbox span.box:before {
    transform: rotate(45deg) translateY(-5px) translateX(10px) scale(0);
}

.checkbox span.box:after {
    height: 8px;
    transform: rotate(-45deg) translateY(10px) translateX(-4px) scale(0);
}

.checkbox input:checked+label span.box {
    background: var(--accent2Color);
    border-color: var(--accent2Color);
}

.checkbox input:checked+label span.box:before {
    transform: rotate(45deg) translateY(-5px) translateX(10px) scale(1);
}

.checkbox input:checked+label span.box:after {
    height: 8px;
    transform: rotate(-45deg) translateY(10px) translateX(-4px) scale(1);
}

.checkbox input:disabled:checked~label:before,
.checkbox input:disabled:checked~label:after {
    background: black;
}

.button {
    outline: none;
    width: 100%;
    text-align: center;
    display: inline-block;
    border: none;
    padding-top: 20px;
    padding-right: 0px;
    padding-bottom: 20px;
    padding-left: 0px;
    cursor: pointer;
    border-radius: 0px;
    background: var(--primaryColor);
    color: var(--backgroundColor);
    position: relative;
    top: 0;
    transition: 0.2s ease;
    font-family: 'CadizRegular';
    font-size: 16px;
}

.button:hover {
    top: -3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.button:active {
    background: var(--primaryShadowColor);
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    top: 0;
}

.input__wrapper {
    margin-bottom: 30px;
}



.form-login {
    border-radius: 0px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(51, 51, 51, 0.2);
    background: var(--backgroundColor);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}





.group {
    position: relative;
    margin-bottom: 45px;
}

.group>input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 97%;
    border: none;
    border-bottom: 1px solid #757575;
}

.group>input:focus {
    outline: none;
}

/* LABEL ======================================= */
.group>label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/* active state */
.group>input:focus~label,
.group>input:valid~label {
    top: -20px;
    font-size: 14px;
    color: var(--primaryColor);
}

/* BOTTOM BARS ================================= */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: var(--primaryColor);
    ;
    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 */
.group>input:focus~.bar:before,
.group>input:focus~.bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.group>input: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: var(--primaryColor);
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: var(--primaryColor);
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: var(--primaryColor);
    }

    to {
        width: 0;
        background: transparent;
    }
}












.intro-logo {
    margin-top: 15px;
    margin-bottom: 30px;
    width: 4rem;
    transform: translateY(11.2rem) scale(7);
    -webkit-animation: intro--logo-translate 0.8s 2s both cubic-bezier(0.77, 0, 0.175, 1);
    animation: intro--logo-translate 0.8s 2s both cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 9;
}

.intro-logo .a {
    fill: transparent;
    stroke: #585858;
    stroke-width: 1px;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    -webkit-animation: intro--stroke-offset 1s both ease-in-out, intro--stroke-filla 0.4s 0.8s both ease;
    animation: intro--stroke-offset 1s both ease-in-out, intro--stroke-filla 0.4s 0.8s both ease;
}

.intro-logo .b {
    fill: transparent;
    stroke: #585858;
    stroke-width: 1px;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    -webkit-animation: intro--stroke-offset 1s both ease-in-out, intro--stroke-fillb 0.4s 0.8s both ease;
    animation: intro--stroke-offset 1s both ease-in-out, intro--stroke-fillb 0.4s 0.8s both ease;
}


@-webkit-keyframes intro--stroke-offset {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes intro--stroke-offset {
    to {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes intro--stroke-filla {
    to {
        fill: #184887;
        stroke: #184887;
    }
}

@keyframes intro--stroke-filla {
    to {
        fill: #184887;
        stroke: #184887;
    }
}

@-webkit-keyframes intro--stroke-fillb {
    to {
        fill: #88d2e4;
        stroke: #88d2e4;
    }
}

@keyframes intro--stroke-fillb {
    to {
        fill: #88d2e4;
        stroke: #88d2e4;
    }
}


@-webkit-keyframes intro--logo-translate {
    to {
        transform: translateY(-10.3rem) scale(3);
    }
}

@keyframes intro--logo-translate {
    to {
        transform: translateY(0.3rem) scale(4);
    }
}