*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

body{
min-height:100vh;
}

/* MAIN LAYOUT */

.container{
display:flex;
min-height:100vh;
flex-wrap:wrap;
}

/* LEFT SECTION */

.left-section{
flex:1.5;
background:url("images/NMIMS_Background_Image.avif") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
justify-content:center;
padding:40px;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.35);
}

.title-box{
position:relative;
text-align:center;
width: 100%;
}

.title-box h1{
font-size:32px;
font-weight:700;
color:#000;
}

.line{
width:100%;

height:3px;
background:#e01919;
margin:12px auto 0;
}

/* RIGHT SECTION */

.right-section{
flex:1;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.login-wrapper{
text-align:center;
width:100%;

}

.logo{
width:160px;
margin-bottom:20px;
}

/* LOGIN CARD */

.login-card{
background:white;
padding:30px;
border-radius:8px;
width:100%;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.login-card input{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:4px;
font-size:14px;
}

.forgot{
text-align:right;
margin-bottom:15px;
}

.forgot a{
font-size:12px;
color:#2a7df6;
text-decoration:none;
}

button{
width:100%;
margin-top: 15px;
padding:12px;
background:#d62828;
border:none;
color:white;
font-weight:bold;
border-radius:4px;
cursor:pointer;
font-size:15px;
}

button:hover{
background:#b91c1c;
}

.register{
margin-top:15px;
font-size:13px;
color:#555;
}

.register a{
color:#2a7df6;
text-decoration:none;
}

/* ---------- TABLET ---------- */

@media (max-width:1024px){

.title-box h1{
font-size:26px;
}

.logo{
width:140px;
}

}

/* ---------- MOBILE ---------- */

@media (max-width:768px){

.container{
flex-direction:column;
}

.left-section{
height:35vh;
padding:20px;
}

.title-box h1{
font-size:22px;
}



.right-section{
height:auto;
padding:0px;
}

.logo{
width:120px;
}

.login-card{
padding:25px;
}

}

/* ---------- SMALL MOBILE ---------- */

@media (max-width:480px){

.title-box h1{
font-size:20px;
}

.login-card{
padding:20px;
}

.login-card input{
padding:10px;
font-size:13px;
}

button{
padding:10px;
}

}
form{
    text-align: left;
}

                     /* Wrapper so dropdown is positioned relative to input */
.city-wrapper {
  position: relative;
  overflow: visible !important;
}



/* Group headers */
.city-dropdown .group-header {
  background: #f7f7f7;
  font-weight: 600;
  font-size: 13px;
  color: #555;
  padding: 6px 10px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2; /* makes header stick on scroll */
}

/* City options */
.city-dropdown .city-option {
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.city-dropdown .city-option:last-child {
  border-bottom: none;
}

/* Hover effect */
.city-dropdown .city-option:hover {
  background: #f0f8ff;
  color: #0066cc;
}
.city-wrapper input{
  width:100%;
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 0px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Dropdown should attach perfectly to input */
.city-dropdown{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  max-height:150px;
  overflow-y:auto;
  background:#fff;
  border:1px solid #ced4da;
  border-top:none;
  border-radius:0 0 4px 4px;
  z-index:1000;
}


.multi-select-wrapper {
      position: relative;
    }

/* Make course input look like normal form input */
.multi-select-input{

  min-height: 38px;
  
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  background: #fff;
  font-size: 14px;

  width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Placeholder like normal input */
.multi-select-input .placeholder{
  color:#6c757d;
  font-size:14px;
}

/* Selected tags */
.multi-select-input .tag{
  background:#005baa;
  color:#fff;
  padding:3px 8px;
  border-radius:3px;
  font-size:12px;
  display:flex;
  align-items:center;
}

/* Close icon inside tag */
.multi-select-input .tag span{
  margin-left:6px;
  cursor:pointer;
}


    .multi-select-dropdown {
      display: none;
      background: #fff;
      border: 1px solid #ccc;
      width: 100%;
      z-index: 10;
      max-height: 220px;
      overflow: auto;
    }

    .multi-select-dropdown input {
      width: 95%;
      margin: 5px;
      padding: 5px;
    }

    .multi-select-dropdown ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .multi-select-dropdown li {
      padding: 8px;
      cursor: pointer;
    }

    .multi-select-dropdown li:hover {
      background: #f0f0f0;
    }

    /* Mobile Friendly */
    @media (max-width: 600px) {
      .multi-select-wrapper {
        width: 100%;
      }
    }


    .npat-seo-section{
  background:#f9f9f9;
  padding:60px 20px;
}

.seo-container{
  max-width:1100px;
  margin:auto;
}

.npat-seo-section h2{
  font-size:32px;
  margin-bottom:20px;
  color:#111;
}

.npat-seo-section h3{
  font-size:22px;
  margin-top:30px;
  margin-bottom:10px;
  color:#222;
}

.npat-seo-section p{
  font-size:16px;
  line-height:1.7;
  color:#444;
}

.npat-seo-section ul{
  padding-left:20px;
  margin-top:10px;
}

.npat-seo-section ul li{
  margin-bottom:8px;
  font-size:15px;
  color:#444;
}

/* Mobile */

@media (max-width:768px){

.npat-seo-section{
  padding:40px 15px;
}

.npat-seo-section h2{
  font-size:24px;
}

.npat-seo-section h3{
  font-size:18px;
}

.npat-seo-section p{
  font-size:14px;
}

}


.footer-disclaimer{
  font-size:13px;
  line-height:1.6;
  color:#777;
  text-align:center;
  padding:20px 15px;
  max-width:1100px;
  margin:auto;
}

@media (max-width:768px){
  .footer-disclaimer{
    font-size:12px;
    padding:15px;
  }
}
