@font-face {
    font-family: FuturaPt;
    src: url("./../fonts/FuturaPTMedium.otf") format("opentype");
}

@font-face {
    font-family: FuturaPt;
    font-weight: bold;
    src: url("./../fonts/FuturaPTBold.otf") format("opentype");
}

body{
    padding: 0px;
    margin: 0px;
    background: #fff !important;
    font-family: FuturaPt, sans-serif !important;
}

.form-container{
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.header{
    border-bottom:  solid #e8e6e6 !important;
}

.header p{
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.alert{
    position: absolute !important;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    transition: opacity 2s;
}
.show-box{
    opacity: 1;
}

.text-center a{
    color: #000 !important;
    font-size: 14px!important;
    font-style: normal!important;
    font-weight: 600;
    border-bottom: 1px dotted!important;
}

.text-center a:hover{
   color: #DC8585 !important; 
}

.text-danger {
    color: #dc8585!important;
}

.small, small {
    font-size: 80%;
    font-weight: 400;
}

.hide{
    display: none !important;
}

.loader {
    border: 2px solid #fff;
    border-top: 2px solid #7e2e31;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 2s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.alert{
    background: #fff !important;
    color: #dc8585 !important;
    border: none !important;
}

.login-form{
    padding: 30px !important;
    width: 400px !important;
    border-radius: 10px;
    box-shadow: 0 0 .4rem rgba(0,0,0,.1)!important;
    background: #fff;
}

.login-form h1{
    text-align: center;
    font-weight: bold !important;
    color: #414141 !important;
    font-size: 19px !important;
}

.login-form button{
    background-color: #b499b1 !important;
    border-color: #b499b1 !important;
    color: #fff!important;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.44rem 1rem;
    font-size: 1.125rem;
    line-height: 1;
    border-radius: 1.1875rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login-form button:hover{
    background-color: #7e2e31 !important;
    border-color: #7e2e31 !important;
}

.login-form label{
    font-size: 14px !important;
    color: #9a9a9a;
}

.login-form input{
    display: block;
    width: 100%;
    height: 40px;
    padding: 0.44rem 1rem;
    font-size: 14px;
    line-height: 1;
    color: #494949;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #c7c7c7;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}