/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[7].use[3]!./src/app/(auth)/login/page.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
/* Login Page - Figma Design (Form Only) */

/* --- Layout --- */
.page_pageContainer__LUg0G {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 400px); /* Примерная высота за вычетом хедера/футера, чтобы центрировать */
}

/* --- Login Card --- */
.page_loginCard__WKGSG {
  width: 480px;
  max-width: 100%;
  background-color: #ffffff;
  border: 1px solid #E4E4EE; /* Borders/Light */
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.02); /* Легкая тень, чтобы выделить на фоне */
}

.page_cardHeader__AZYbY {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.page_title__rq_Rs {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #25252E;
  text-align: center;
  margin: 0;
}

.page_subtitle__uVPFN {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #25252E;
  text-align: center;
  margin: 0;
}

/* --- Form --- */
.page_form__4lOgm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page_inputGroup__CDomu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.page_label__zZPeo {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #25252E;
}

.page_inputWrapper__zIiop {
  position: relative;
  height: 48px;
  width: 100%;
}

.page_input__TnuzW {
  width: 100%;
  height: 100%;
  border: 1px solid #E4E4EE;
  border-radius: 6px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #25252E;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.page_input__TnuzW:focus {
  border-color: #3679B5; /* Site Base 2 */
}

.page_input__TnuzW::placeholder {
  color: #B2B2C2; /* Text/Light 3 */
}

/* Error states */
.page_inputError__ZV0Sv {
  border-color: #b3261e;
}

.page_errorText__2Eojb {
  color: #b3261e;
  font-size: 12px;
  margin-top: 4px;
  padding-left: 4px;
}

/* --- Buttons --- */
.page_submitButton__IXRUr {
  width: 100%;
  height: 48px;
  background-color: #3679B5; /* Site Base 2 */
  border-radius: 24px;
  border: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.2s;
}

.page_submitButton__IXRUr:hover {
  background-color: #35707c;
}

.page_submitButton__IXRUr:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: #C8DDEF; /* Fallback or primary container color */
  color: rgba(255, 255, 255, 0.7);
}

/* --- Links --- */
.page_registerLink__KZilM {
  margin-top: 0;
  display: flex;
  gap: 4px;
  font-size: 12px;
  line-height: 16px;
  justify-content: center;
  width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.page_registerText__zJoD0 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #464646; /* Neutral 30 */
}

.page_registerAction__kYGlk {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #1E4F75; /* Foreground/Primary */
  text-decoration: none;
  letter-spacing: 0.5px;
}

.page_registerAction__kYGlk:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 540px) {
  .page_loginCard__WKGSG {
    padding: 24px 20px;
    width: 100%;
    gap: 20px;
  }
  
  .page_pageContainer__LUg0G {
    padding: 16px;
  }

  .page_title__rq_Rs {
    font-size: 20px;
  }

  .page_label__zZPeo {
    font-size: 14px;
    line-height: 20px;
  }

  .page_input__TnuzW {
    font-size: 14px;
    padding: 0 12px;
  }

  .page_inputWrapper__zIiop {
    height: 44px;
  }

  .page_submitButton__IXRUr {
    height: 44px;
    font-size: 15px;
  }
}

