@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f2f3f5;
  color: #14171a;
}

.container__auth {
  flex-grow: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(
    to right,
    rgba(37, 99, 235, 0) 0%,
    rgba(37, 99, 235, 0.05) 20%,
    rgba(37, 99, 235, 0.1) 50%,
    rgba(37, 99, 235, 0.05) 80%,
    rgba(37, 99, 235, 0) 100%
  );
}

.logo {
  margin-bottom: 32px;
}

.formWrapper {
  background: #ffffff;
  padding: 48px;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  border: 1px solid #8c939d;
}

.title {
  color: #000000;
  font-family: "Outfit";
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 36px;
  text-align: center;
  position: relative;
}

.title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 2px;
  background-color: #3a82f6;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inputGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.label {
  color: #14171a;
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.input {
  padding: 12px 16px;
  border: 1px solid #8c939d;
  border-radius: 10px;
  font-family: "Outfit";
  font-size: 16px;
  line-height: 24px;
  color: #14171a;
  background-color: #f2f3f5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: #3a82f6;
  box-shadow: 0 0 0 3px rgba(58, 130, 246, 0.2);
  background-color: #ffffff;
}

.input::placeholder {
  color: #8c939d;
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.submitButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 8px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .formWrapper {
    padding: 16px;
  }
}
