body {
  margin: 0;
}

.input {
  min-height: 100vh;
}

.input {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f6f9;
  border-radius: 15px;
  padding: 60px 40px;
}

.login-box {
  width: 100%;
  max-width: 450px;
}

.login-box h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.subtitle {
  color: #64748b;
  margin-bottom: 30px;
}

.login-box label {
  display: flex;
  margin-bottom: 8px;
  margin-top: 15px;
  font-weight: 600;
  color: #0f172a;
}

.login-box input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
  margin-bottom: 10px;
}

.login-box input:focus {
  border-color: #3b82f6;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  margin-top: 25px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(to right, #2563eb, #06b6d4);
  cursor: pointer;
}

.btn-secondary {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  background: #e2e8f0;
  color: #334155;
  cursor: pointer;
}

.forgot {
  display: block;
  margin-top: 25px;
  color: #2563eb;
  text-decoration: none;
}
#ustaTypeBox select {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
  margin-bottom: 10px;
}

#ustaTypeBox select:focus {
  border-color: #3b82f6;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  gap: 10px;
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

.custom-checkbox input:checked + .checkmark {
  background: linear-gradient(to right, #2563eb, #06b6d4);
  border: none;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s;
}

.custom-checkbox input:checked + .checkmark::after {
  opacity: 1;
}
