:root {
  --primary-color: #7E00A7;
  --light-color: #FCF5FF;
  --title-color: #000000;
  --text-color: #959BAC;
  --border-color: #454C63;
  --font: 'Istok Web', sans-serif;
  --theme-light: #DBC0E5;
}

/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  font-family: var(--font);
}

/* Top offer bar */
.top-limited {
  color: var(--theme-light);
}
.top-offer-bar {
  background: #000;
  font-size: 0.9rem;
  width: 100%;
}

/* Buttons */
.btns {
  padding: 7px 36px;
}
.btn-purple {
  border-radius: 6px;
  font-weight: 400;
}
.btn-outline-purple {
  border-radius: 6px;
  font-weight: 500;
  width: 248px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Search bar */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 410px;
  height: 38px;
  border: 1px solid #454C63;
  border-radius: 10px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-color);
}
.search-bar input {
  width: 100%;
  height: 100%;
  border: 1.5px solid #d6d6d6;
  border-radius: 10px;
}

/* Navbar links */
.nav-link {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--title-color);
  margin-right: 20px;
}

/* ================= LEFT SECTION ================= */
.left-section1 {
  position: relative;
}

.left-section1 .col-md-9 {
  position: relative;
  z-index: 1;
}
.left-section1 .col-md-5 {
  position: absolute;
  top: 120px;
  left: 0;
  z-index: 2;
}

/* Left section text */
.title1 {
  width: 293px;
  height: 79px;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  position: relative;
  left: 30px;
  top: -80px;
  color: white;
}
.content1 {
  width: 252px;
  position: relative;
  left: 30px;
  top: -110px;
  font-size: 16px;
  color: white;
}

/* Left section image */
.students1 {
  width: 799px;
  height: 611px;
  position: relative;
  top: -30px;
}

/* Auth box */
.auth-box {
  background: var(--light-color);
  border-radius: 10px;
  padding: 50px 0;
  margin-top: 10px;
  margin-bottom: 60px;
  height: 753px;
  width: 463px;
  position: relative;
  right: 15px;
}
.auth-title, .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: var(--title-color);
}
.content {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--text-color);
}

/* Form controls */
.form-control {
  width: 427px;
  height: 43px;
  margin: auto;
  border: 1px solid #454C63;
  border-radius: 10px;
  opacity: 0.7;
}
.form-control-m-f {
  width: 206px;
  height: 43px;
  border: 1px solid #454C63;
  border-radius: 10px;
  opacity: 0.7;
  background: white;
}
.male-female {
  display: flex;
  justify-content: space-between;
  width: 427px;
  margin-left: 5px;
}
.male-female .form-control-m-f {
  width: 206px;
}
.form-control:focus,
.form-control-m-f:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Misc */
.bg-round {
  background: var(--primary-color);
}
.address, .namefull, .email {
  width: 100%;
}
.check-box {
  margin-top: 3px;
}

.btn-confirm {
  width: 427px;
  position: relative;
  top: 10px;
  margin-left: 17px;
}

/* ======================= RESPONSIVE ======================= */

/* LAPTOP ≤1280px */
@media (max-width: 1280px) {
  .students1 {
    width: 100% !important;
    max-width: 620px;
    height: auto !important;
    margin: 0 auto;
    top: auto !important;
  }
}

/* TABLET ≤991px */
@media (max-width: 991px) {
  body { overflow-x: hidden; }

  .left-section1, .left-section1 .col-md-5, .left-section1 .col-md-9 {
    position: static !important;
  }

  .students1 {
    width: 100% !important;
    max-width: 520px;
    height: auto !important;
    margin: 0 auto 20px;
  }

  .title1, .content1 {
    width: 100% !important;
    text-align: center;
    position: relative !important;
    top: auto !important;
    left: auto !important;
  }
}

/* MOBILE ≤767px */
@media (max-width: 767px) {
  .left-section1 {
    display: flex;
    flex-direction: column;
  }

  .students1 { order: 1; }
  .title1 { order: 2; font-size: 22px; line-height: 28px; margin-top: 10px; }
  .content1 { order: 3; font-size: 14px; margin-top: 8px; }

  .male-female {
    flex-direction: column;
    width: 100% !important;
  }
  .form-control-m-f {
    width: 100% !important;
  }
}

/* SMALL MOBILE ≤400px */
@media (max-width: 400px) {
  .title1 { font-size: 20px; }
  .content1 { font-size: 13px; }
}
