/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb; /* Tailwind: bg-gray-50 */
  color: #1f2937; /* Tailwind: text-gray-800 */
  margin: 0;
}

/* Header */
header {
  background-color: #ffffff; /* Tailwind: bg-white */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Tailwind: shadow */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4f46e5; /* Tailwind: text-indigo-600 */
}

header nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #374151; /* Tailwind: text-gray-700 */
  transition: color 0.3s;
}

header nav a:hover {
  color: #4f46e5;
}

header nav a:last-child {
  background-color: #4f46e5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  margin-left: 1rem;
  transition: background-color 0.3s;
}

header nav a:last-child:hover {
  background-color: #4338ca;
}
  
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  header {
    background: #ffffff;
    padding: 0px 0;
    border-bottom: 1px solid #eee;
  }
  
  header .logo {
    text-decoration: none;
    color: #333;
    font-weight: 800;
    font-size: 28px;
  }
  
  nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
  }
  
  nav a:hover {
    color: #000;
  }

/* Login Form */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
}

.login-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    font-size: 24px;
    color: #5a67d8;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus {
    border-color: #5a67d8;
    outline: none;
}

/* Remember me and Forgot Password */
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
}

.forgot-password {
    color: #5a67d8;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #5a67d8;
    color: white;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.login-btn:hover {
    background-color: #4c51bf;
}

/* Register Link */
.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a {
    color: #5a67d8;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}