#student_login_form {
  min-height: 100vh;
  padding-top: 128px !important;
  box-sizing: border-box;
}
#student_login_form .inner {
  background-color: var(--bg) !important;
  box-shadow: none;
  padding: 0px;
}
.login-page-flex-line {
  display: flex;
  min-height: 80vh;
  border-radius: 20px;
  overflow: hidden;
}
.login-page-flex-line > div {
  height: 100%;
}
.slide-area {
  height: 100%;
}
.lpfl-left {
  overflow: hidden;
  position: relative;
}
#slide-button {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 32px !important;
}
.lpfl-right {
  position: relative;
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  box-sizing: border-box;
}
.form-flex-wrap {
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
}
.form-flex-wrap > .login-form-line {
  width: calc((100% - 30px) / 2);
}
.slide-area .wrap {
  padding: 50px !important;
}
.flex-form-area {
  width: 100%;
}
.control-row {
  right: auto !important;
  left: 50px;
  bottom: 50px !important;
}
.main-section-title {
  font-size: 36px !important;
}
.main-section-subtitle {
  font-size: 20px !important;
}
.flex-form-title {
  font-size: 32px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
}
#login-form {
  padding: 20px;
}
.login-form-line {
  margin-bottom: 24px;
  position: relative;
}

#school-list {
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  display: block;
  width: 100%;
  background-color: var(--white);
  box-sizing: border-box;
}

#signup-school:focus + #school-list {
  display: block;
}
.sch-choice {
  padding: 12px;
  width: 100%;
  font-size: 13px;
  box-sizing: border-box;
}
.sch-choice:hover {
  background-color: #f5f5f5;
}
.form-flex-wrap .login-form-line {
  margin-bottom: 0px;
}
.login-form-label {
  margin-bottom: 8px;
  font-size: 14px;
}
.login-form-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-size: 14px;
  background-color: var(--bg);
  border-radius: 10px;
  border: none;
  outline: none;
}
.login-form-button {
  width: 100%;
  background-color: var(--point);
  color: var(--white);
  font-size: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  height: 48px;
  cursor: pointer;
}
.form-under-line {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-under-line-left {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
}
.form-under-line-right {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: right;
}
.form-under-link {
  font-size: 14px;
  color: var(--point);
}
.form-under-link:hover {
  text-decoration: underline;
}
.input-button-flex-line {
  display: flex;
  gap: 12px;
}
.input-button-flex-line input {
  width: calc(80% - 12px);
}
.input-button-flex-line button {
  width: 20%;
}
.check-submit-button {
  background-color: var(--point);
  border: none;
  outline: none;
  color: var(--white);
  border-radius: 10px;
  cursor: pointer;
}
#signup-address-detail {
  margin-top: 12px;
}

@media (max-width: 560px) {
  .flex-form-title {
    font-size: 24px;
  }
  .lpfl-right {
    padding: 0px;
  }
  .form-flex-wrap {
    gap: 12px;
  }
  .form-flex-wrap > .login-form-line {
    width: 100%;
  }
  .input-button-flex-line button {
    width: 40% !important;
  }
}
