/* Login form */
.login-wrapper{
    width:100%;
    height:100%;
    min-height: 100vh;
    background-color: transparent;
    display:flex;
    justify-content:center;
    align-items:center;
    background-image: url('../images/background-login.jfif');
    background-size: cover;
}

.box-login{
    background-color: #fff;
    box-sizing: border-box;
    max-width: 500px;
    padding: 40px 30px;
}

.box-login.box-sign-up {
    max-width: unset;
    margin: 30px 0;
}

.login-header {
    position: relative;
}

.login-header .horizontal-rules{
    height: 30px; 
    border-top: solid 3px #AB0635; 
    border-left: solid 3px #AB0635;
    border-right: solid 3px #AB0635;
    min-width: 350px;
}

.login-header .header-title{
    position: absolute;
    background-color: #fff;
    top: 0;
    left: 50%;
    transform: translate(-50%,-45%);
    padding: 12px;
    color: #AB0635;
}

.login-content{
    padding: 10px 15px 0px;
}

/* .form-control{
    border: solid 1px #a8a8a8 !important;
    outline: none;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border-radius: 0px !important;
    height: 34px;
    padding: 5px 12px;
} */
/* End Login form */

/* Button */
.antara-btn{
    display: inline-block;
    padding: 5px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    outline: none !important;
    border: none;
    border-radius: 0 !important;
}

.btn-red {
    background-color: #C90000;
    color: #FFF !important;
    border: solid 1px #C90000;
}

/* End Button */

/* Text */
.f-600{
    font-weight: 600 !important;
}

.txt-red{
    color: #C90000;
}

.txt-horizontal {
    overflow: hidden;
    text-align: center;
    color: #D6D6D6;
}

.txt-horizontal:before, .txt-horizontal:after {
    background-color: #D6D6D6;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.txt-horizontal:before {
    right: 0.5em;
    margin-left: -50%;
}

.txt-horizontal:after {
    left: 0.5em;
    margin-right: -50%;
}

.social-login-account a{
    max-width: 100% !important;
}
/* End Text */