@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700");
@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');

@font-face {
    font-family: "urdufont";
    src: url("../Jameel Noori Nastaleeq 2.woff") format("woff");
}

.urdutext {
    font-family: urdufont;
    text-align: center;
    color: red;
    direction: rtl;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    margin: 0;
    padding: 0;
    color: #676a6c;
}

.image-container {
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.image-container img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    align-self: center;
}

.form-container-main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    /* overflow-y: auto; */
    
    word-break: break-all;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    flex: 1;
    padding: 10px 15% 0 15%;
}

.footer {
    text-align: center;
    padding: 10px;
}

.form-container h2 {
    font-weight: 100;
    font-size: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 14px;
    color: #777676;
}

.form-group input:focus {
    border-color: #1ab394;
    box-shadow: none;
}

.form-group button {
    background-color: #1ab394;
    color: #fff;
    padding: 5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

button:hover {
    background-color: #18a084;
}

a {
    text-decoration: none !important;
}

@media (max-width: 767px) {
    .form-container {
        height: auto;
    }
}

/* @media (min-width: 767px) { */
@media (min-width: 992px) {
    .form-container-main {
        overflow-y: auto;
    }
}

.blur {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0);
    animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        /* transform: translateY(20px); */
        background-color: rgba(255, 255, 255, 0);
    }

    to {
        opacity: 1;
        /* transform: translateY(0); */
        background-color: rgba(255, 255, 255, 0.8);
    }
}

/* ----------------------------------------------------------- */
.footer-div{
    position: relative;
}

#guidBtn {
    font-family: 'Playball', cursive;
    padding: 0 4px 0 0;

    /* display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99; */
    
    position: absolute;
    bottom: 75%;
    right: 30px;

    font-size: 28px;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    background-color: #0c7be9;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

#guidBtn:hover {
    background-color: #0c4175;
}

/* ------------------------------- Custom scrollbar --------------------------------- */
/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bababa;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #9c9c9c;
}

/* ------------------------------password hide and show---------------------------- */
.password-div {
    position: relative;
}

.toggle_password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    
}

.toggle_password:focus {
    outline: none;
}

.toggle_password i {
    font-size: 1.2em;
    color: #4787da;
}

.toggle_password i:hover {
    color: #1c5db2;
}
/* --------------------------------Dotted line----------------------------------- */
.horizontal-text{
    width: 100%;
    text-align: center;
    border-bottom: 1px dotted #000;
    line-height: 0.1em;
    margin: 10px 0 20px;
 }
 .horizontal-text span {
     background:#fff;
     padding:0 10px;
 }