.footer-copy-login {
  font-size: 16px;
  color: #62707C;
  line-height: 1.6;
 
}

.footer-inner-login {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.auth-page {
  background: #f5f7f9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.auth-box {
  background: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: 6px;
  padding: 30px 35px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.auth-title {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 12px;
}

.auth-subtitle {
  font-size: 16px;
  color: #62707C;
  margin-bottom: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 16px;
  margin-bottom: 10px;
}

.form-group input {
  padding: 12px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.password-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 36px;
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: #d08a64;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: not-allowed;
  margin-top: 10px;
}

.btn-login:enabled {
  background: #c5531b;
  cursor: pointer;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.auth-links.single {
  justify-content: flex-start;
}

.auth-links a {
  font-size: 16px;
  color: #000;
  text-decoration: underline;
}

.required {
  color: #B10E1E; /* червоний, близький до стандартного alert-red */
  font-weight: bold;
}

input::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1; /* щоб у Firefox не було блідого */
}

.footer-link-login{
    color: #B94C19;
    font-size: 18px;
    margin-bottom: 6px;
}

.login-dop-class{
    margin-bottom: 10px;
}

.error-box {
  background: #ffe5e5;
  color: #b00020;
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
  border: 1px solid #ffb3b3;
}


.warning-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff3cd;
  border-left: 5px solid #856404;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.warning-icon {
  width: 32px;
  height: 26px;
  border-radius: 50%;
  background: #856404;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.warning-text {
  color: #856404;
  font-size: 16px;
  font-weight: 100;
  line-height: 1.5;
}

.warning-text a {
  color: #004085;
  text-decoration: underline;
}

.email-error {
  color: #b00020;
  font-size: 14px;
  margin-top: 6px;
  padding-left: 10px;
  border-left: 3px solid #b00020;
}

.password-error {
  color: #b00020;
  font-size: 14px;
  margin-top: 6px;
}

