* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f4f6f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.loginformwrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.header-logo {
  text-align: center;
  margin-bottom: 24px;
}

.header-logo img {
  max-width: 160px;
}

.login-header-box {
  text-align: center;
  margin-bottom: 24px;
}

.welcometext {
  font-size: 22px;
  font-weight: 700;
}

.smalllogintext {
  font-size: 14px;
  color: #6b7280;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-box label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-control-inner {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.form-control-inner:focus {
  outline: none;
  border-color: #2563eb;
}

.btn-signin {
  margin-top: 22px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.btn-signin:hover {
  background: #1e40af;
}

footer {
  background: #f4f4f5;
  padding: 15px 10px;
  text-align: center;
}

.footer-ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.f-link {
  font-size: 13px;
  color: #374151;
  text-decoration: none;
}

.f-link:hover {
  color: #2563eb;
}

.copy-right p {
  font-size: 12px;
  color: #6b7280;
}
