﻿* {
    padding: 0;
    margin: 0;
}

@font-face {
    src: url(/Fonts/Roboto/Roboto-Light.ttf);
    font-family: Barlow;
}

body {
    font-family: 'Barlow',sans-serif !important;
}

.form-container {
    background: #fff;
    height: 100vh;
    position: relative;
    background-image: url(/Images/Logo/partogoLogo.png);
    background-repeat: no-repeat;
    background-size: 226px;
    background-position-y: center;
    background-position-x: 25%;
}

.form-container .content {
   position: fixed;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
}

.frm-control {
    display: block;
    width: 100%;
    height: 46px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: solid 1px #dedede;
    border-radius: 2px;
}

.login-row{
    height:100vh;
    display:flex;
    align-items:center;
}

.form-col {
    background-color: #fff;
    color: white;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius:5px;
    overflow:hidden
}

.form-col .body{
    padding:40px;
}

.form-col .header{
       background: #8cb1da;
    padding: 15px 40px;
    position:relative;
        border-bottom: 2px solid #2993fb;
}

h1 {
    font-size: 40px;
    margin-top: 0;
    font-weight: 700;
    font-family: Arial,sans-serif;
}

.miracle {
    position: absolute;
    right: 35px;
    top: 50%;
    text-align: right;
    transform: translateY(-50%);
}

.miracle img{
    width: 31%;
    display: inline-block;
    height: 80px;
    object-fit: contain;
}

.alert {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    border: 0 solid transparent;
}

.alert-danger {
    color: #fff;
    background-color: #f10c0c;
    background-image: none;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 10px;
    font-size: 45px;
    vertical-align: middle;
}

.input-group {
    position: relative;
    border-collapse: separate;
    margin-bottom: 15px;
    outline: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group-addon {
    border-radius: 3px 0px 0px 3px;
    color: white;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    width: 50px;
    justify-content: center;
    border-radius: .25rem 0 0 .25rem;
    position: relative;
    border:0;
}

.input-group-addon.green {
    background-color: #e31e24;
}

.input-group-addon.black {
    background-color: #008dd2;
}

.input-arrow::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%) rotate( 45deg );
}

.input-arrow.black:after {
    background: #008dd2;
}

.input-arrow.green:after {
    background: #e31e24;
}

.input-group .frm-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
    outline:none
}

.form-col form .input-group-addon i {
    font-size: 18px;
    padding: 0px 10px 0px 10px;
}

.btn-order {
    background-color: #2b2a29;
    color: #fff !important;
    width: 100%;
}

.btn-xlg, .btn-group-xlg > .btn {
    font-size: 20px;
    padding: 10px 20px;
}

.link {
    color: #f10c0c;
    font-size: 22px;
    font-weight: 700;
    margin: 0px;
    padding: 20px;
    background-color: #ffffff;
    display: block;
    text-align: center;
    text-decoration:none!important;
    transition:all 500ms;
}

.link:hover{
    color:#fff;
    background:#f10c0c;
}

.download-form{
    display:flex;
    align-items:center;
    height:100vh;
    justify-content:center;
}

.download-form button{
    border: 0;
    background: #81bc00;
    color: #fff;
    padding: 5px 10px;
    width: 250px;
    height: 50px;
    font-size: 20px;
    outline:none;
    border-radius:2px;
    letter-spacing:1.5px;
    transition:500ms all ease-in;
}

.download-form button:hover{
    background:#f10c0c;
}

@media screen and (max-width:767px),screen and (max-device-width:767px) {

.login-row{
    margin:0 15px;
}
}