/* [project]/app/globals.css [app-client] (css) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #f0f2f5;
  color: #2d3748;
  line-height: 1.5;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px #0000000d;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
  text-align: center;
}

p {
  margin-bottom: 1rem;
  color: #4a5568;
}

label {
  font-weight: 500;
  margin-bottom: .5rem;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: .65rem;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #f7fafc;
  transition: border-color .2s;
}

input:focus, select:focus, textarea:focus {
  border-color: #718096;
  outline: none;
  background-color: #fff;
}

button {
  padding: .65rem 1.2rem;
  background-color: #4a5568;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s;
}

button:hover {
  background-color: #2d3748;
}

.error {
  color: #e53e3e;
  font-weight: 500;
  text-align: center;
  margin-top: 1rem;
}

.password-input {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input__field {
  width: 100%;
  padding: .5rem 2.5rem .5rem .5rem;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
}

.password-input__toggle {
  all: unset;
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #718096;
}

.password-input__toggle:hover {
  color: #2d3748;
}

.form-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


/* [project]/app/components/Header/Header.module.css [app-client] (css) */
.Header-module__D5nTzG__header {
  background-color: #2d3748;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.Header-module__D5nTzG__nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.Header-module__D5nTzG__link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color .2s;
}

.Header-module__D5nTzG__link:hover {
  color: #cbd5e0;
}

.Header-module__D5nTzG__adminLink {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin-left: 1rem;
  padding: .25rem .5rem;
  border: 1px solid #0000;
  border-radius: 4px;
  transition: color .2s, border-color .2s;
}

.Header-module__D5nTzG__adminLink:hover {
  color: #cbd5e0;
  border-color: #cbd5e0;
}

.Header-module__D5nTzG__userControls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Header-module__D5nTzG__logoutButton {
  background-color: #e53e3e;
  color: #fff;
  border: none;
  padding: .5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color .2s;
}

.Header-module__D5nTzG__logoutButton:hover {
  background-color: #c53030;
}

.Header-module__D5nTzG__loginLink {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}


/*# sourceMappingURL=app_11f095._.css.map*/
