/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/components/Header/Header.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
.navbar {
  display: flex;
  align-items: center;
  padding: 1em;
  justify-content: space-between;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 0.5em;
}

.logoText {
  margin: 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.4em;
}

.common {
  color: var(--primary-foreground);
  text-decoration: none;
  font-size: 1.3rem;
}

.begin {
  padding: 10px 20px;
  background: rgb(37, 99, 235);
  font-size: 1.3rem;
  color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0, 0.3);
  cursor: pointer;
}

@media (max-width: 768px) {
  .common {
    display: none;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/components/LoginForm/loginform.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************/
.loginSection {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  height: 87vh;
  padding: 1em;
  border-radius: 10px;
  overflow: hidden;
}

.loginForm {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.loginForm input {
  margin-bottom: 1em;
  padding: 0.5em;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.loginForm button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: rgb(37, 99, 235);
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.loginForm button:hover {
  background-color: rgb(139, 187, 90);
}

