/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f9;
  color: #000;
}

/* Login Container */
.login-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 350px;
}

/* Branding & Logo */
.logo {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #000000;
}

.logo span {
  color: #888888;
}

/* Form Styles */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 14px;
  text-align: left;
  font-weight: 600;
  color: #333;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  color: #000;
  background-color: #f9f9f9;
  transition: background 0.3s ease;
}

input:focus {
  background-color: #f0f0f0;
  border-color: #1e3a8a;
}

/* Login Button */
button {
  background-color: #000000;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #222222;
}

/* Register Section */
.register-text {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

.register-btn {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.register-btn:hover {
  background: #000;
  color: white;
}

/* Add spacing below the logo */
.logo img {
  margin-bottom: -30px;
}

/* Add spacing below the heading */
h2 {
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 400px) {
  .login-container {
    width: 90%;
    padding: 1.5rem;
  }
}


