@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary-color: #397CF2; 
  --secondary-color: #000000; 
}
*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
body{
    background-color: #EDEDED;
    font-family: "Noto Sans", sans-serif;
    color: #000;
}
.text-center{
    text-align: center;
}
.mb-3{
    margin-bottom: 15px;
}

.mb-5{
    margin-bottom: 35px;
}
.d-flex{
    display: flex;
}
.row{
    flex-wrap: wrap;
    margin: 0px -15px;
}
.my-4{
    margin-top: 20px;
    margin-bottom: 20px;
}
.row .col-3{
    width: 25%;
    padding: 0px 15px;
}
.f20,.btnPrimary,.topLinks a,.btnLable{
   font-size: 20px;
}
.justify-between{
    justify-content: space-between;
}
.items-center{
    align-items: center;
}
.container{
    max-width: 1400px;
    margin:0px auto;
    padding: 0px 15px;
}
.title{
    font-size: 35px;
    font-weight: 600; 
}
.loginLogo{
    margin-bottom: 25px;
    display: block;
}
.loginWrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.bg-white{
    background-color: #fff;
}
.h3Title{
    font-size: 25px;
    font-weight: 600;
}
.label{
    font-size: 16px;
    font-weight: 600;
    display: block;
}
.loginForm{
    padding: 35px;
    max-width: 550px;
}
input[type="text"],input[type="email"],input[type="password"],input[type="number"]{
    width: 100%;
    margin-bottom: 20px;
    color: #B8B8B8;
    font-size: 20px;
    border: 1px solid #BCBCBC;
    padding: 15px;
}
.w-full{
    width: 100%;
}
.btnPrimary {
    background-color: var(--primary-color);
    padding: 7px 35px;
    text-align: center;
    border: 0px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}
.forgetPassword{
    color: var(--primary-color);
    margin-top: 20px;
    display: block;
    text-decoration: none;
}
header{
    background-color: #fff;
    padding: 15px;
}
.rightBar{
    gap: 50px;
}
.toggle img{
    cursor: pointer;
}
.topLinks{
   gap: 35px;
}
.topLinks a{
    font-weight: 600;
    text-decoration: none;
    color: #000;
}
.topLinks a.active{
  color: var(--primary-color);
}
.fileWrapper{
    padding: 0px;
    margin-top: 0px;
    border-radius: 23px;
}
form.uploadform {
    background-color: #fff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 15px;
}
.uploadform div label {
    font-weight: 700;
}
.fileWrapper.bg-white h3.h3Title {
    font-size: 16px;
}
.dottedBorderBlock{
border: 2px dashed #C5C5C5;
padding: 8px;
margin: 10px 0px;
border-radius: 23px;
}
.btnLable{
    background: #D4D4D499;
    color: #747474;
    font-weight: bold;
    border-radius: 5px;
    display: block;
    padding:6px 15px;
    width: 200px;
    margin:7px auto;
    cursor: pointer;
}
.dottedBorderBlock h5,.dottedBorderBlock p{
    color: #717171;
}
.dottedBorderBlock img {
    max-width: 55px;
}
.dottedBorderBlock p{
    font-size: 14px;
}
.selectForm{
    background: #D9D9D94D;
    border-radius: 5px;
    padding: 15px;
}
.selectForm label{
    display: block;
    margin: 10px 0px;
}
.selectForm label input{
    margin-right: 10px;
}
.selectForm label span{
    font-size: 16px;
    color: #5C5C5C;
}
.mapWrapper img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.tablesection {
    max-width: 1400px;
    margin: 0px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
}
.tablesection h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}


@media (max-width:767px) {
    .brandLogo img{
     max-width: 100px;
    }
    .topLinks,.rightBar{
        gap: 20px;
    }
    .topLinks a{
        font-size: 12px;
    }
    .row .col-3{
        width: 100%;
    }
    .selectForm{
        margin-bottom: 20px;
    }
    .fileWrapper{
        margin: 35px 0px;
    }
}