* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(90deg, #f2f4f8, #e9f2fb);
  color: #333;
}
html body{padding:0px 0px!important;}
.container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	height: 100vh;
	overflow: auto;
	background: #fff;
}
.container.main-page{
	max-width:1800px!important;
}
/* LEFT PANEL */
.left {
  width: 400px;
  background: #fff;
  padding: 40px 30px;
}

.logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo h1 {
  color: #2a7dbf;
  margin: 10px 0 5px;
}

.logo p {
  font-size: 20px;
  color: #ee0603;
  padding-top: 10px;
}

.login-box {
  margin-top: 20px;
}

.login-box h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #2a7dbf;
  text-align: center;
}
.input-group {
  position: relative;
  margin-bottom: 15px;
}
.modal-content .form-label{font-size:13px;}
.input-group i {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  color: #a0a0a0;
}
.input-group i.icon{color: #008fd5;}
.input-group i.view:hover{color: #3e3e3e;}
.input-group .left-icon {
  left: 12px;
}

.input-group .right-icon {
  right: 12px;
  cursor: pointer;
}
.input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
}
.input.login-input{
	padding-left: 32px;
	padding-right: 35px;
}
input:hover {
    border-color: #008fd5;
}
.login-box .btn {
  width: 100%;
  padding: 12px;
  background: #004eaf;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  font-size: 13px;
}

.btn.secondary {
  background: #eb0402;
}

.forgot {
  font-size: 13px;
  text-align: center;
  color: #2a7dbf;
  margin-bottom: 15px;
  cursor: pointer;
}
.logo-login{max-width:300px;}
.footer {
	margin-top: 40px;
    font-size: 13px;
    text-align: center;
    color: #888;
    position: relative;
    width: 340px;
    top: calc(100vh - 600px);
}

/* RIGHT PANEL */
.right {
  width: calc(100% - 400px);
  padding: 0px;
  position: relative;
  display: flex;
  align-items: center;  
  justify-content: center; 
  height: 100vh; 
}
.bannber-login{width:100%;}
.steps {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.step {
  background: #e3f2fd;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
}

.highlight {
  background: #1e88e5;
  color: #fff;
}

.promo {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.promo h2 {
  color: #1e88e5;
}

.programs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.programs div {
  background: #f5f9ff;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: orange;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
}
img {
    vertical-align: middle;
    border-style: none;
	max-width:100%;
}
.student {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 250px;
}
.popup-main-content{display:none;position:fixed;top:0;left:0;width:100%;height:100%;
   background:rgba(0,0,0,0.7);justify-content:center;align-items:flex-start;z-index:998;}
.popup-main-content .modal-dialog{transform: translate(0, 0px)!important; width:100%; max-width:540px;
max-height: calc(100vh - 50px); overflow: auto; margin: 20px auto !important; padding: 3px 3px !important;}
.popup-main-content .modal-dialog.small{max-width:420px;}
.popup-main-content .modal-dialog.large{max-width:760px;}
.popup-main-content .modal-dialog.largex{max-width:980px;}
.popup-main-content .modal-dialog.bigsmall{max-width:1140px;}
.popup-main-content .modal-dialog.big{max-width:98%;}
.modal-header .popup-close-content{position:absolute;top:15px;right:15px;font-size:22px;cursor:pointer;}
.popup-main-content img{max-width:100%;}
.popup-main-content iframe, .popup-main-content object{max-width:100%;}
.input-error{border: 1px solid red; }
.input-error:focus, .input-error:hover, .input-error:active, .input-error:invalid{
	border: 1px solid red;
    outline: none!important;
    box-shadow: 0 0 5px #ff6c6c;
}
@media (max-width: 900px) {
  .left { max-width: 100%; }
  .footer{width: 100%;}
  .student, .right { display: none; }
}