/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
}

.layout {
  min-height: 100vh;
}

.top-nav {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-items {
  display: flex;
  gap: 20px;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.nav-user span {
  color: #666;
}

.nav-user button {
  background: none;
  border: none;
  color: #0066cc;
  cursor: pointer;
  font-size: 14px;
}

.nav-user button:hover {
  text-decoration: underline;
}

.top-nav a, .sub-nav a {
  color: #0066cc;
  text-decoration: none;
}

.top-nav a:hover, .sub-nav a:hover {
  text-decoration: underline;
}

.top-nav a.active, .sub-nav a.active {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.sub-nav {
  background: #fafafa;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
}

.content {
  padding: 20px;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #f5f5f5;
}

.login-form {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 300px;
}

.login-form h1 {
  margin-bottom: 20px;
  font-size: 24px;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.login-form button {
  width: 100%;
  padding: 10px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.login-form button:hover {
  background: #555;
}

.login-form .error {
  color: #d00;
  margin-bottom: 15px;
  font-size: 14px;
}

