/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Oct 20, 2021, 4:05:42 PM
    Author     : jamal
*/
html,body,p,span,ul,li,ol,div,article,form,input,textarea,select,button,h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto','Cairo', Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0
}
html,body{
    color: #6e6b7b;
}
a{
    text-decoration: none;
}
.auth-inner-container{
    background: #fff;
}
/*
*@Created on : OCT 03, 2021
*@Author     : jamalla Karteek
*@Form Styles
*/
.errors{
    font-size: 12px;
    color: red;
    display: none;
}
.input-required{
    font-size: 0.4rem;
    color: red;
    position: relative;
    top: -5px;
}
html[dir=ltr] .input-required{
    margin-left: 5px
}
.inline-form label {
    color: #475f7b;
    font-size: .8rem;
    font-weight: 500;
}
.label__uppercase label{
    text-transform: uppercase;
}
.label__uppercase label.label__text_default{
    text-transform: initial;
}
.inline-form select,.inline-form .form-control,.inline-form .select2-container--default .select2-selection--single{
    display: block;
    width: 100%;
    padding: .47rem .8rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #475f7b;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dfe3e7;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 0;
}

.inline-form select,.inline-form input.form-control,.inline-form .select2-container--default .select2-selection--single,.inline-form .select2-selection__arrow{
    height: calc(1.4em + .94rem + 3.7px) !important;
}
.inline-form select:hover,.inline-form .form-control:hover,
.inline-form select:focus,.inline-form .form-control:focus,
.inline-form select:active,.inline-form .form-control:active{
    outline: none !important;
}
.btn_submit{
    background-image: linear-gradient(to right, #4c217e, #512387, #572590, #5c289a, #622aa3);
    color: #fff;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
}
html[dir=ltr] .btn_submit svg{
    margin-left: 5px;
}
.inline-form textarea{
    resize:none;
}
.password_warp{
    position: relative;
}
html[dir=ltr] .password_warp input{
    padding-right: 1.8rem;
}
.password-group-append{
    position: absolute;
    top: 9px;
    cursor: pointer;
}
html[dir=ltr] .password-group-append{
    right: 7px;
}
#auth-inner-form-warp h3{
    font-size: 1.1rem;
}
#auth-inner-form-warp h1{
    font-size: 1.5rem;
}
.auth-inner-text p{
    font-size: 0.7rem;
}
.formsubmited:disabled,
.formsubmited[disabled]{
    cursor: not-allowed;
    opacity: 0.6;
}
.inline-form .form-group.invalid input{
    border-color: red;
}