@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Poppins", sans-serif !important;
}

/* ✅ Full-page structured layout */
body {
  color: #5a5a5a;
}

/* ✅ Main Container */
.container-fluid {
  width: 90%;
  max-width: 1920px;
  margin: 40px auto;
  padding: 20px;
  position: relative;
}

/* ✅ Row 1: Back Button & System Title */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.back-btn {
  font-size: 18px;
  cursor: pointer;
  color: black;
  text-decoration: none;
}

/* .back-btn:hover,
.back-btn:focus {
  text-decoration: none;
} */

.system-title {
  text-align: right;
  font-size: 18px;
  line-height: 22px;
}

/* ✅ Row 2: Registration Form Title */
.title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* ✅ Labels */
label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

/* ✅ Register Button */
.register-btn {
  padding: 14px 20px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}
