body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #ffffff, #f3f4f6);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-login {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.login-block {
  	background: #fff;
  	border-radius: 5px;
	padding: 2rem 3rem 3rem 3rem;
    width: 100%;
	max-width: 25rem;
    text-align: center;
    border-color: hsl(20 5.9% 90%);
    border-style: solid;
    border-width: thin;
}

.login-header .icon {
  font-size: 48px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.login-header h1 {
  font-size: 24px;
  color: #1f2937;
  margin-top: 10px;
}

.login-header p {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  color: #1f2937;
  font-size: 14px;
  outline: none;
}

.form-group input:focus {
  border-color: #d1d5db;
  box-shadow: 0 0 0 2px rgba(209, 213, 219, 0.5);
}

button[type="submit"] {
  padding: 12px;
  background: #1f2937;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

button[type="submit"]:hover {
  background: #374151;
}

.login-footer {
  margin-top: 24px;
}

.login-footer span {
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.login-footer span:hover {
  color: #111827;
}
