/* New screens Start */
:root {
  --primary: #6e3562;
  --secondary: #e1b93d;
  --light-bg: #f8f5f7;
  --card-bg: #ffffff;
  --border-color: #e8e1da;
  --text-dark: #353535;
}
.loginWrapper_new .container {
  max-width: 1500px;
  padding-left: 30px;
  padding-right: 30px;
}
.login_portal_section {
  font-family: "Mozilla Text", sans-serif;
  background-size: cover;
  color: var(--text-dark);
}

.login_portal_section {
  min-height: 100vh;
  /* background: #faf7f8; */
  position: relative;
  overflow: hidden;
}

.login_header {
  background: #fff;
  box-shadow: 6px 0 6px 0 rgba(0, 0, 0, 0.15);
  padding: 20px 0;
}

.logo img {
  height: 53px;
  width: auto;
}

.support_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--primary);

  font-family: "Barlow Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.support_btn:hover {
  background: var(--primary);
  color: #fff;
}

.login_content {
  max-width: 520px;
}

.login_title {
  font-family: "Barlow Condensed";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--primary);
  margin-bottom: 14px;
}

.login_title span {
  color: var(--secondary);
}

.title_line {
  width: 70px;
  height: 8px;
  border-radius: 10px;
  background: var(--secondary);
  margin-bottom: 20px;
}

.login_description {
  font-family: "Mozilla Text";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  color: #111;
  margin-bottom:20px;
}

.portal_card {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
}

.portal_heading {
font-family: "Mozilla Text";
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 38px;
  margin-bottom: 5px;
}

.search_field {
  position: relative;
  margin-bottom: 10px;
}

.portal_address_wrap {
  z-index: 20;
}

.portal_address_dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.portal_address_dropdown .portal_suggest_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #F5F5F5;
  text-align: left;
}

.portal_address_dropdown .portal_suggest_item:last-child {
  border-bottom: 0;
}

.portal_address_dropdown .portal_suggest_item:hover {
  background: #FFF8EE;
}

.portal_address_dropdown .portal_suggest_item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.portal_address_dropdown .portal_suggest_item span {
  display: block;
  font-size: 13px;
  color: #666;
}

.portal_address_dropdown .portal_suggest_empty {
  padding: 14px 16px;
  color: #888;
  font-size: 14px;
}

.search_field svg {
  position: absolute;
  left:20px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.search_field .form-control {
  height:60px;
  padding-left:48px;

  border-radius: 10px;
border: 1px solid #D9D9D9;
background: #FFF;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);

  font-family: "Mozilla Text";
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}

.institution_item {
border-radius: 10px;
border: 1px solid #FDEFD6;
background: #FFF8EE;
  padding: 14px 16px;
  margin-bottom:8px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.institution_info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.institution_icon {
  width: 42px;min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2e6c9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.institution_info h6 {
  margin: 0;font-size: 18px;
  font-weight: 700;
}

.institution_info p {
  margin: 0;
  color: #666;
}

.btn_continue {
  text-decoration: none;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
font-weight: 600;
  white-space: nowrap;
}

.btn_continue svg{ stroke:var(--primary) ;}

.btn_continue:hover { background: var(--primary); color: #fff;}
.btn_continue:hover svg{stroke:#fff;}

.or_divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.or_divider::before,
.or_divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e6d6a8;
}

.or_divider span {
  width: 54px;  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #FFF0C0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  font-weight: 600; font-size: 16px;
}

.btn_portal {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  height: 56px;
  font-size:20px;
  font-weight:600;
}

.portal_help {
  text-align: center;
  margin:10px 0 15px;
}

.portal_help a {
  color: var(--primary);
  text-decoration: none;
  font-family: "Mozilla Text";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 38px;
}

.trainee_card {
  padding: 18px;
  border-radius: 10px;
background: linear-gradient(90deg, #F8EEF5 0%, #FCF8EC 100%);
  border: 1px solid #f1e2d0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trainee_card h6 {
  color: var(--primary);
  font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 20px;
  margin-bottom: 4px;
}

.trainee_card p {
  margin: 0;
  font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px; /
}

.security_info {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--primary);
  font-weight: 500;
}

@media (max-width:1199px) {
.loginWrapper_new .logo{ height: auto; max-height: 55px;}
.login_illustration{ margin-bottom: 20px;}
.login_illustration img { max-width:420px;}
}

@media (max-width: 1199px) {
  .login_content {
    text-align: center;
    margin-bottom:20px;
    max-width: 100%;
  }

  .title_line {
    margin-left: auto;
    margin-right: auto;
  }

  .login_title {
    font-size: 54px;
  }

  .portal_card {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .login_title {
    font-size: 42px;
  }
  .title_line{ margin-bottom: 13px;}

  .login_description {
    font-size: 18px;line-height: 140%;
  }

  .institution_item,
  .trainee_card {
    flex-direction: column;
    align-items: stretch;
  }

  .btn_continue {
    text-align: center;
  }

  .portal_card {
    padding: 20px;
    border-radius: 18px;
  }
  .login_header{padding: 10px 0;}
  .support_btn{ font-size: 20px;}
  .textbtn{ position: relative; top: -1px;}
  .login_illustration img {
	max-width: 100%;
}
.portal_heading {
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 130%;
	margin-bottom: 5px;
}
.search_field .form-control {
  height: 50px; font-size: 16px;
}
.portal_help a{ line-height: 26px;}
.btn_portal{ height: 50px;}

.loginWrapper_new .container {
	padding-left: 20px;
	padding-right: 20px;
}
.institution_info h6{ font-size: 16px;}
}
