.register-section {
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.register-form {
    width: 100%;
    max-width: 1100px;
}

.form-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  color: #000000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group.full {
    width: 100%;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.submit-btn {
  width: 100%;
  background: #1F3A5F;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.form-footer {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}

.form-footer a {
    color: #1F3A5F;;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}