.portal-newest-container {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  padding: 50px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(15deg, #daebff 40%, #3c8dbc 100%);
  position: relative;
}

.portal-newest-container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  bottom: 0px;
  left: 0px;
  background-position: top center;
  background-size: cover;
  background-image: url("../img/bg-login-portal.svg");
}

.portal-newest-form {
  position: relative;
  width: 100%;
  max-width: 385px;
  z-index: 1;
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 24px;
  overflow: hidden;
}
.portal-newest-form::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-image: url("../img/bg-login-vector-left.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  width: 100%;
  height: 50%;
  z-index: -1;
}
.portal-newest-form::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background-image: url("../img/bg-login-vector-right.svg");
  background-repeat: no-repeat;
  background-position: right top;
  width: 100%;
  height: 50%;
  z-index: -1;
}
.form-type {
  margin-bottom: 16px;
}

.form-check label {
  font-size: 12px;
  font-weight: 600;
  color: #343434;
}

.form-check {
  display: grid;
  justify-items: center;
  gap: 10px;
  position: relative;
  padding: 10px 10px 4px;
  border-radius: 8px;
  width: 150px;
  transition: background-color 0.3s;
}

.form-check:hover {
  background-color: #edf5ff;
}

.selected-role {
  background: #edf5ff;
}

.form-type-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  gap: 8px;
}

.form-check-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
}

.form-check-input:checked {
  width: 24px;
  height: 24px;
  opacity: 1;
  top: 5px;
  left: 50%;
  transform: translateX(10px);
  background-color: #fff;
}

.form-check-input:checked::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 10;
  background-color: #fff;
  border-radius: 100%;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.form-check-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #3c8dbc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-check-admin {
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/admin.svg");
}

.form-check-treasury {
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/treasury.svg");
}

.form-check-student {
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/student.svg");
}

.form-group {
  position: relative;
}

.form-group label,
.form-type-label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  padding-left: 16px;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  border-radius: 12px;
  height: 40px;
  background-color: #f2f2f2;
  font-size: 13px;
}

.form-group input::placeholder {
  color: #727272;
}

.form-group i {
  position: absolute;
  bottom: 13px;
  right: 12px;
  z-index: 2;
}

.form-button {
  padding-top: 10px;
  width: 100%;
  display: flex;
  justify-content: end;
}

.btn-submit {
  margin-left: auto;
  width: 120px;
  height: 40px;
  border: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #3c8dbc;
}

.form-title {
  font-size: 28px;
  line-height: 28px;
  font-weight: 600;
  color: #3c8dbc;
  text-align: center;
  margin: 0px;
  margin-bottom: 2px;
}

.form-subtitle {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  color: #727272;
  text-align: center;
  margin: 0px;
  margin-bottom: 14px;
}

.form-information {
  font-size: 13px;
  margin: 0px auto;
  line-height: 16px;
  text-align: center;
  margin-bottom: 18px;
  color: #727272;
  padding: 8px;
  border-radius: 12px;
  border: 1px dashed #dddddd;
}
