.section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 162px);
}
.form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}
.form-wrapper h3 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
  font-size: 14px;
}
.form-group input {
  width: 100%;
  padding: 12px 0px;
  border: 2px solid #787a7c;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-group input:focus {
  outline: none;
  border-color: #2d2d30;
  box-shadow: 0 0 0 3px rgba(79, 79, 80, 0.2);
}
.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3f4352 0%, #28252b 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 17, 19, 0.4);
}
.login-btn:active {
  transform: translateY(0);
}
.reset-password {
  margin-top: 10px;
  width: 100%;
  height: 1.25rem;
}
.reset-password > a:hover {
  color: #28252b;
}
.reset-password > a {
  color: #4479db;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

/* register btn */
.registration-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3f4352 0%, #28252b 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.registration-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(17, 17, 19, 0.4);
}
.registration-btn:active {
  transform: translateY(0);
}

/* Адаптивность */
@media (max-width: 480px) {
  .form-wrapper {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .form-wrapper h3 {
    font-size: 22px;
  }
}

/* Адаптивность */
@media (max-width: 480px) {
  .form-wrapper {
    padding: 30px 20px;
    margin: 10px;
  }
  
  .form-wrapper h3 {
    font-size: 22px;
  }
}