/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

/* Login Layout */
.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Headings */
.form-header {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #0077cc;
}

.login-card h2 {
  font-weight: 400;
  margin-bottom: 20px;
  color: #444;
}

/* Form Elements */
input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
  font-size: 1rem;
}

input:focus {
  border-color: #00baff;
  outline: none;
}

button {
  background: #00baff;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0077cc;
}

/* Error Message */
.error {
  background: #ffe0e0;
  color: #cc0000;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}


