@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #171717;
  color: white;
  min-height: 100vh;
}

.registration-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 40px 20px;
  position: relative;
}

.back-link {
  position: absolute;
  top: 30px;
  left: 40px;
  text-decoration: none;
}
.back-link .back {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}
.back-link .back:hover {
  background-color: white;
  color: #171717;
  border-color: white;
  transform: translateY(-2px);
}
.back-link .back:active {
  transform: translateY(0);
}

.content {
  width: 100%;
  max-width: 480px;
  padding: 40px;
  background-color: #2B2B2B;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  animation: fadeInUp 0.5s ease forwards;
}
.content h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content form .input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content form .input-group label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
.content form .input-group input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(23, 23, 23, 0.3);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.content form .input-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.content form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.content form .input-group input:focus {
  border-color: white;
  background: rgba(23, 23, 23, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.content form input[type=submit] {
  width: 100%;
  border: none;
  background-color: white;
  color: #171717;
  margin-top: 10px;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.25s ease, transform 0.2s ease;
}
.content form input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}
.content form input[type=submit]:active {
  transform: translateY(0);
}
.content .divider {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 0.1em;
  margin: 28px 0;
}
.content .divider span {
  background: #2B2B2B;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.content .buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content .buttons .social-btn {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(23, 23, 23, 0.2);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.content .buttons .social-btn i {
  font-size: 16px;
}
.content .buttons .social-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.content .buttons .social-btn:active {
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 576px) {
  .registration-page {
    padding: 90px 16px 30px 16px;
  }
  .back-link {
    top: 20px;
    left: 20px;
  }
  .content {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .content h1 {
    font-size: 26px;
    margin-bottom: 24px;
  }
}/*# sourceMappingURL=registration-styles.css.map */