/* font commons */
.display-font {
  font-family: var(--main-font);
  font-size: 98px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.76px;
  color: #fff;
}

.banner-title {
  font-family: var(--main-font);
  font-size: 75px;
  font-style: normal;
  font-weight: 600;
  line-height: 64.8px;
  text-transform: capitalize;
}

.banner-section-type {
  font-family: var(--type-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 6.96px;
  /* text-transform: uppercase; */
  color: #ffd478;
}

.section-type {
  font-family: var(--type-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 6.96px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 49px;
  color: var(--color-text-dark);
  letter-spacing: -1px;
  line-height: 1.3;
}

.head-xl {
  font-family: var(--main-font);
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}

.head-lg {
  font-family: var(--main-font);
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}

.head-m {
  font-family: var(--main-font);
  font-size: 20px;
  font-weight: 600;
}

.para-xl {
  font-family: var(--main-font);
  font-size: 24px;
  font-style: normal;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0px;
}

.para-lg {
  font-family: var(--main-font);
  font-size: 20px;
  font-style: normal;
  line-height: 1.6;
}

.para-m {
 color: #3D3D3D;
 font-family: var(--font-primary);
 font-size: 18px;
 font-style: normal;
 font-weight: 400;
 line-height: 1.6;
 letter-spacing: -0.36px;
}

.para-sm {
  font-family: var(--main-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}

/* --------------------------------- */

.section-padding-lg {
  padding-top: 110px;
  padding-bottom: 110px;
}
/* ===============================
   DreamIgnite Auth Modal
================================= */

.auth-modal .modal-dialog{
    max-width:1000px;
}

.auth-modal-content{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.auth-left{
    background:linear-gradient(160deg,#1768f2,#0b57d0);
    color:#fff;
    min-height:620px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px;
}

.auth-left h2{
    font-size:60px;
    font-weight:800;
    margin-bottom:28px;
    line-height:1;
}

.auth-left p{
    font-size:20px;
    line-height:1.8;
    max-width:320px;
}

.auth-right{
    background:#fff;
    padding:45px 50px;
    position:relative;
}

.auth-close{
    position:absolute;
    top:22px;
    right:22px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f5f9;
    color:#1f2937;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.auth-close:hover{
    background:#1768f2;
    color:#fff;
}

.auth-close i{
    font-size:16px;
}

.auth-tabs{
    display:inline-flex;
    background:#eef3fb;
    padding:6px;
    border-radius:999px;
    gap:6px;
}

.auth-tabs .nav-link{
    border:none;
    border-radius:999px;
    padding:11px 28px;
    color:#64748b;
    font-weight:600;
    background:transparent;
}

.auth-tabs .nav-link.active{
    background:#1f2937;
    color:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.form-label{
    font-weight:600;
    color:#374151;
    margin-bottom:8px;
}

.auth-input{
    border:1px solid #dbe4f2;
    border-radius:14px;
    height:56px;
    padding:0 18px;
    font-size:15px;
    transition:.25s;
}

.auth-input:focus{
    border-color:#1768f2;
    box-shadow:0 0 0 4px rgba(23,104,242,.12);
}

textarea.auth-input{
    height:auto;
    padding:14px 18px;
}
.password-wrap{
    position:relative;
}

.password-toggle{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:transparent;
    color:#6b7280;
    padding:0;
    width:auto;
    height:auto;
    cursor:pointer;
}

.password-toggle:hover{
    color:#1768f2;
}
.forgot-link{
    color:#1768f2;
    text-decoration:none;
    font-weight:600;
}

.forgot-link:hover{
    text-decoration:underline;
}

.auth-btn{
    height:58px;
    border-radius:999px;
    background:#1f2937;
    color:#fff;
    font-size:18px;
    font-weight:700;
    border:none;
    transition:.3s;
}

.auth-btn:hover{
    background:#1768f2;
    transform:translateY(-1px);
}

/* Mobile */

@media(max-width:991px){

.auth-right{
padding:35px 25px;
}

.auth-modal .modal-dialog{
margin:20px;
}

.auth-tabs{
width:100%;
justify-content:center;
}

.auth-tabs .nav-link{
flex:1;
}

}