@font-face {
    font-family: 'Cadiz';
    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: 100vh;
    width: 100%;
    margin: 0;

    font-family: 'Cadiz';
    font-weight: 400;
    font-style: normal;
}

div.container.login {
    min-height: 100vh;
    min-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    background-image: url("../img/Mon-Clinic-Texturas-4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}


div.container.survey {
    min-height: 100vh;
    min-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    background-image: url("../img/Mon-Clinic-Texturas-4.jpg");
    background-position: center;
    background-repeat: repeat;
    background-size: contain;
    position: relative;
}


div.container.dashboard {
    min-height: 100vh;
    min-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff;
    position: relative;
}

#logo{
    width: min(50vw, 200px);
}

.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.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: 'Cadiz';
    font-size: 16px;
}

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

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

.microsoft {
    border-radius: 0px;
    font-size: 16px;
    border: none;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
    box-shadow: 0 1px 5px rgba(51, 51, 51, 0.2)
}

.microsoft svg {
    width: 30px;
    height: 30px;
    color: white;
    margin-right: 10px;
}

.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;
}

footer > a {
    color: #000; font-size: 14px;
    line-height: 28px;
    text-decoration: none;
}

footer > a:hover {
    text-decoration: underline!important;
}