html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body > div,
body > div > section {
    height: 100%;
    padding: 0;
    margin: 0;
}

.container-fluid {
    height: 100%;
}

.row.no-gutters {
    height: 100%;
    margin: 0;
}

.col-md-5,
.col-md-7 {
    height: 100%;
}

@media (max-width: 767px) {
    html, body {
        height: auto;
        overflow-y: auto;
    }

    body > div,
    body > div > section {
        height: auto;
    }

    .col-md-5,
    .col-md-7 {
        height: auto;
    }

    .row.no-gutters {
        height: auto;
    }

    .logo-principal {
        max-width: 240px !important;
        width: 100% !important;
        transform: none !important;
    }

    .col-md-5 {
        padding-top: 8rem !important;
        padding-bottom: 3rem !important;
    }
}

.form-control {
    border-radius: 15px;
}

.btn {
    border-radius: 20px;
}

.form-check-label {
    padding-left: .2rem !important;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;
}

input[type="checkbox"]:checked {
    background-color: #25305F;
    border-color: #25305F;
}

input[type="checkbox"]:checked::before {
    content: '\2714';
    display: block;
    text-align: center;
    color: white;
    font-size: 8px;
}

.login-pass-wrap {
    position: relative;
}

.login-pass-wrap .form-control {
    padding-right: 2.6rem;
}

.login-eye {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: inline-flex;
    line-height: 0;
    color: #8a8f99;
    cursor: pointer;
    z-index: 3;
}

.login-eye:hover {
    color: #25305F;
}

.login-eye svg {
    display: block;
}

.login-flip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    white-space: pre;
    pointer-events: none;
    perspective: 400px;
    z-index: 2;
}

.login-flip-char {
    display: inline-block;
    transform-origin: 50% 50%;
    backface-visibility: hidden;
    animation: loginFlipIn 0.45s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.login-flip-char--dot {
    font-size: 0.5em;
    line-height: 1;
    letter-spacing: 0.15em;
}

@keyframes loginFlipIn {
    0% {
        transform: rotateX(90deg);
        opacity: 0;
        filter: blur(1px);
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
        filter: blur(0);
    }
}
