/* Reset */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* Page background */
.page-content {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(136deg, rgb(149,153,226) 0%, rgb(139,198,236) 100%);
}

/* Form Container */
.form-v10-content {
  background: #fff;
  width: 1100px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
  margin: 95px 0;
  position: relative;
  padding-bottom: 20px;
}

/* Form Layout */
.form-v10-content .form-detail {
  display: flex;
  width: 100%;
}

.form-v10-content .form-univer {
  margin: auto;
  width: 50%;
}

.form-v10-content .form-detail h2 {
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 34px;
  padding: 33px 50px 0px 60px;
}

/* Left & Right Sections */
.form-v10-content .form-detail .form-left {
  width: 100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.form-v10-content .form-detail .form-left h2 {
  color: #2271dd;
}

.form-v10-content .form-detail .form-right {
  width: 100%;
  background: #4835d4;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.form-v10-content .form-detail .form-right h2 {
  color: #fff;
}

/* Inputs & Selects */
.form-v10-content .form-detail input,
.form-v10-content .form-detail select,
.form-v10-content .form-detail textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.form-v10-content .form-detail textarea {
  border: 0.3px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.form-v10-content .form-detail select {
  cursor: pointer;
}

.form-v10-content .form-detail .form-left input,
.form-v10-content .form-detail .form-left select {
  border-bottom: 1px solid #ccc;
  color: #000;
}

.form-v10-content .form-detail .form-left input:focus,
.form-v10-content .form-detail .form-left select:focus {
  border-bottom: 1px solid #999;
}

.form-v10-content .form-detail .form-right input,
.form-v10-content .form-detail .form-right select {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-v10-content .form-detail .form-right input:focus,
.form-v10-content .form-detail .form-right select:focus {
  border-bottom: 1px solid #ccc;
}

.form-v10-content .form-detail .form-right select option {
  background: #4835d4;
  color: #fff;
}

/* Buttons */
.register {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0px 6px 17px rgba(0, 0, 0, 0.15);
  width: 180px;
  border: none;
  margin: 20px 0 50px;
  cursor: pointer;
  color: #333;
  font-weight: 700;
  font-size: 15px;
  padding: 12px;
  transition: background 0.3s ease;
}

.register:hover {
  background: #ccc;
}

/* Labels */
.form-label {
  color: rgb(73, 73, 73);
  float: right;
}

label {
  color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
  .form-v10-content {
    margin: 95px 20px;
  }
}

@media (max-width: 991px) {
  .form-v10-content .form-detail .form-group {
    flex-direction: column;
  }
  .form-v10-content .form-detail .form-row {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .form-v10-content .form-detail {
    flex-direction: column;
  }
  .form-v10-content .form-detail .form-right {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
}

@media (max-width: 575px) {
  .form-v10-content .form-detail .form-row {
    padding: 0 30px;
  }
  .form-v10-content .form-detail h2 {
    padding: 33px 30px 0px;
  }
  .form-v10-content .form-detail .form-right .form-row-last {
    padding-left: 0;
    text-align: center;
  }
}

/* Checkbox container */
.checkbox-group {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  direction: rtl;
}

/* Hide default checkbox */
.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #4CAF50;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  margin-left: 10px; /* space between box and label */
}

/* Checked state */
.checkbox-group input[type="checkbox"]:checked {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

/* Checkmark */
.checkbox-group input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 4px;
}

/* Label style */
.checkbox-group label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
