.register {
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: #f3f8fc;
  font-family: "Inter", sans-serif !important;
}

.register .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 94px;
  background: #f4f7f9;
  min-height: 100vh;
}

.card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register .title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #334155;
}

.register .subtitle {
  text-align: center;
  font-size: 14px;
  color: #4b5563;
  font-weight: 300;
}

.register .step {
  color: #10a3c5;
  font-weight: 600;
  align-self: flex-end;
  font-size: 18px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FULL WIDTH FIELD */
.field.full {
  grid-column: span 2;
}

/* FIELD */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 14px;
  color: #334155;
}

.field span {
  color: red;
}

/* INPUT */
input,
select {
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

/* INPUT GROUP (VERIFY BUTTON) */
.input-group {
  display: flex;
}

.input-group input {
  flex: 1;
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.verify {
  background: #e0f2fe;
  border: 1px solid #38bdf8;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
}

/* CTC GROUP */
.ctc-group {
  display: flex;
  gap: 10px;
}

.ctc-group select {
  flex: 1;
}

/* UPLOAD */
.upload {
  margin-top: 20px;
}

.upload-box {
  border: 2px dashed #38bdf8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  color: #64748b;
}

.upload-box p {
  margin: 0;
}

/* BUTTON */
.actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.submit-btn {
  background: #0ea5b7;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.checkboxRow {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.checkboxRow label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

.checkboxRow input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkboxRow a {
  color: #0e8fb0;
  text-decoration: none;
  font-weight: 500;
}

.checkboxRow a:hover {
  text-decoration: underline;
}
