/* @import url("https://use.typekit.net/ulx2jma.css"); */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #d3a243;
    /* --secondary-color--: #122b31;   */
    --secondary-color--: #192a24;  
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    /* font-family: "source-sans-pro", sans-serif; */
    font-family: "Urbanist", sans-serif;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin-bottom: 0;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.login_page{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    /* background: url(../images/factory-against-sky.jpg) no-repeat;
    background-size: cover; */
    /* background-position: bottom; */
    /* filter: blur(1px);
    -webkit-filter: blur(1px); */
    position: relative;
    padding-left: 10px;
    /* padding-right: 10px; */
    background: #425A8B;
    /* gap: 10px; */
}

.login_page_gradient{
    width: 55%;
    /* height: calc(100vh - 20px); */
    height: calc(100vh - 0px);
    /* background: linear-gradient(#8a6376, #003f83);
    background: radial-gradient(#8a6376, #003f83); */
    /* border-radius: 20px; */
    overflow: hidden;
   position: relative;
   display: flex;
   align-items: end;
   justify-content: center;
   z-index: 1;
}

.login_page_gradient .logo{
    /* width: 350px; */
    width: 430px;
    margin-bottom: 10%;
}
.mb-5 {
    margin-bottom: 20px;
}

.login_page_gradient .logo p{
    font-size: 22px;
    color: #659cc7;
    text-align: center;
    font-weight: 600;
}

.login_page_gradient.bg_img::before{
   background: radial-gradient(#0e3767 0%, transparent 60%); 
}

.login_page_gradient.bg_img::after{
    content: '';
    width: 100%;
    left: 0;
    top: 0;
    z-index: -2;
    height: 100%;
    background: url(../images/login_bg_3.jpg) no-repeat;
    background-size: cover;
    position: absolute;
    opacity: 0.3;
}

.sign_up_page{
    align-items: start;
    padding: 120px 20px;
    height: auto;
}

.login_page::before{
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: url(../images/factory-against-sky_123.jpg) no-repeat; */
    background-size: cover;
    /* background-position: bottom; */
    /* filter: blur(2px);
    -webkit-filter: blur(2px); */
    z-index: -1;
}

.login_form{
    width: 100%;
    max-width: 45%;
    padding: 20px;
    /* backdrop-filter: blur(5px); */
    /* background-color: rgba(255, 255, 255, 0); */
    /* background-color: rgba(255, 255, 255, 0.21); */
    background-color: #fff;
    /* border-radius: 20px; */
    border-radius: 0px 0 0 0px;
    /* padding: 20px 40px; */
    padding: 40px 40px;
    /* padding: 20px 40px; */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease;
    /* height: calc(100vh - 20px); */
    height: calc(100vh - 0px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.login_form_inside{
    width: 100%;
    max-width: 450px;
}

.heading {
    margin-bottom: 60px !important;
}

.heading h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 5px;
}

.heading p{
    font-size: 18px;
    text-align: center;
    color: #8c8c8c;
}

.login_form form label{
    font-size: 18px;
    margin-bottom: 8px;
    display: inline-block;
    font-weight: 500;
}

.login_form form input, .login_form form textarea{
    width: 100%;
    padding: 15px 10px;
    /* background: #fff; */
    /* background: #eee; */
    border-radius: 10px;
    border: 1px solid #aeaeae;
    outline: none;
    font-size: 14px;
}

.mb_15{
    margin-bottom: 20px;
}

.sub_btn{
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    /* background: #277cbd; */
    background: #ff9916;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: 0.8s;
}
.sub_btn:hover{
    background: #e78301;
    color: #fff;

}

.text-center{
    text-align: center;
}

.password_input{
    position: relative;
}

.password_input input{
    padding-right: 30px;
}

.password_input i{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #b6b6b6;
    cursor: pointer;
    z-index: 2;
}

p.new_account, p.new_account a{
    font-size: 14px;
    color: #000;
}

p.new_account a{
    /* color: #217739; */
    font-weight: 800;
}

.text-left{
    text-align: right;
}

.mt-5{
    margin-top: 5px;
}

.header{
   flex: 1;
   width: 100%;
}

header{
    /* position: fixed;
    left: 0; */
    width: 100%;
    /* top: 0; */
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
    z-index: 99;
    flex: 1;
}

header .logo{
    /* width: 250px; */
    width: 180px;
}

.checkbox_input{
    display: flex !important;
    gap: 5px;
}

.checkbox_input input{
    width: auto !important;
}

.d_flex{
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    /* align-items: center; */
    flex-wrap: wrap;
}

.copy_right_flex{
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex: 1;
    align-items: end;
}

.copy_right{
    text-align: center;
    /* margin-top: 30px; */
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.copy_right_p{
    display: flex;
    gap: 10px;
}

.copy_right_p a{
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.sign_up_form{
    max-width: 1100px;
    height: calc(100vh - 240px);
    overflow: auto;
    scrollbar-width: none;
    scrollbar-color: #217739 #ffffff;
}

/* width */
.sign_up_form::-webkit-scrollbar {
    width: 0;
    border-radius: 20px;
}
  
/* Track */
.sign_up_form::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 20px; 
}
   
/* Handle */
.sign_up_form::-webkit-scrollbar-thumb {
    background: #217739; 
    border-radius: 20px;
}

.checkbox_input{
    font-size: 16px !important;
}

@media(max-width: 1199px){
    .login_form{
        max-width: 55%;
    }
    .login_page_gradient {
        width: 45%;
    }
}

@media(max-width: 991px){
    .login_form{
        max-width: 65%;
        padding: 20px 20px;
    }
    .login_page_gradient {
        width: 35%;
    }
    .login_form_inside {
        width: 100%;
    }
}

@media(max-width: 768px){
    .login_page{
        justify-content: center;
    }
    .login_form{
        max-width: calc(100% - 60px);
        height: calc(100vh - 60px);
    }
    .login_page_gradient {
        display: none;
    }
    .copy_right_flex{
        flex-direction: column;
        align-items: center;
        justify-content: end;
        gap: 10px;
    }
    .heading {
        margin-bottom: 20px !important;
    }
}

@media(max-width: 600px){
    .login_form{
        padding: 20px 20px;
        max-width: calc(100% - 20px);
        height: calc(100vh - 20px);
    }
    .heading h2 {
        font-size: 28px
    }
}
@media(max-width: 425px){
    .login_form{
        padding:  20px 20px;
        max-width: calc(100% - 10px);
        height: calc(100vh - 10px);
    }
    .heading h2 {
        font-size: 28px
    }
}
