.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.login-wrap {
    min-height: calc(100vh - 450px);
    align-items: flex-start;
}

.login-cont-wrap, .pop-up-report, .pop-up-message {
    min-width: 280px;
    margin: 40px 0;
    background-color: #fff;
    padding: 40px;
    -webkit-box-shadow: 0 2px 6px rgba(64, 64, 64, 0.3);
    box-shadow: 0 2px 6px rgba(64, 64, 64, 0.3);
}

.login-cont-wrap input[type="text"],
.login-cont-wrap input[type="email"],
.login-cont-wrap input[type="password"],
.login-cont-wrap input[type="number"],
.login-cont-wrap input[type="tel"] {
    display: block;
    width: 100%;
    min-height: 40px;
    height: 40px;
    padding: 10px 19px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    color: #656565;
    background-color: #fff;
    font-size: 13px;
    line-height: 13px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    margin-bottom: 20px;
}

.login-cont-wrap input[type="text"],
.login-cont-wrap input[type="email"],
.login-cont-wrap input[type="password"],
.login-cont-wrap input[type="number"],
.login-cont-wrap input[type="tel"] {
    width: auto;
}

.login-cont-wrap input[type="text"]:focus,
.login-cont-wrap input[type="text"]:hover,
.login-cont-wrap input[type="email"]:focus,
.login-cont-wrap input[type="email"]:hover,
.login-cont-wrap input[type="password"]:focus,
.login-cont-wrap input[type="password"]:hover,
.login-cont-wrap input[type="tel"]:focus,
.login-cont-wrap input[type="tel"]:hover,
.login-cont-wrap input[type="number"]:focus,
.login-cont-wrap input[type="number"]:hover {
    font-family: Larsseit, Arial, sans-serif;
    border-color: #205fd1;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.login-cont-wrap input[type="submit"] {
    padding: 8px 30px;
    color: #fff;
    background-color: #205fd1;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    border: solid 2px transparent;
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    -webkit-box-shadow: 0 1px 6px rgba(57, 73, 76, 0.35);
    box-shadow: 0 1px 6px rgba(57, 73, 76, 0.35);
    margin-bottom: 10px;
}

.login-cont-wrap input[type="submit"]:active,
.login-cont-wrap input[type="submit"]:hover {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    outline: none;
    -webkit-box-shadow: 0 2px 10px 1px rgba(57, 73, 76, 0.4), 0 1px 2px rgba(57, 73, 76, 0.25);
    box-shadow: 0 2px 10px 1px rgba(57, 73, 76, 0.4), 0 1px 2px rgba(57, 73, 76, 0.25);
}

.login-wrap .method {
    font-size: 13px;
}

.social-l-r-links {
    margin-top: 20px;
}

.social-l-r-links li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background-color: #e6e6e6;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #ccc;
    font-size: 18px;
    margin: 0 5px;
}

.social-l-r-links li a:hover {
    -webkit-animation: drog 1s linear 1;
    animation: drog 1s linear 1;
}

.social-l-r-links li a.g-l:hover {
    background: #dd4b39;
    border-color: #dd4b39;
}

.social-l-r-links li a.tw-l:hover {
    background: #00aced;
    border-color: #00aced;
}

.social-l-r-links li a.face-l:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.login-cont-wrap h4 {
    border-bottom: 2px solid #205fd1;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.recaptcha-place img {
    max-width: 200px;
    margin-bottom: 20px;
}

.login-wrap .rc-anchor-normal {
    height: 74px;
    width: 207px;
    margin: auto;
}

.login-wrap .g-recaptcha {
    margin-bottom: 10px;
}

.recaptScale {
    -ms-transform: scale(0.69);
    transform: scale(0.69);
    -webkit-transform: scale(0.69);
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    margin-left: 97px;
}