.form {
  position: relative;
  width: 412px;
  padding: 32px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.form-error {
  padding-top: 10px;
  color: #c3324b;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form h3 {
  margin: 0 0 36px 0;
  font-family: 'Furore';
  font-size: 18px;
  font-weight: bold;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.form .form-message {
  margin-bottom: 30px;
  text-align: center;
}

.form .form-message-between-inputs {
  margin-bottom: 12px;
  color: #9E9B9B;
  font-size: 16px;
  line-height: 24px;
}

.input-container {
  position: relative;
  height: 58px;
  margin: 0;
  margin-bottom: 12px;
  padding: 0px 16px;
  border: 1px solid rgba(130, 100, 220, 0.6);
  border-radius: 12px;
  background: rgba(100, 60, 200, 0.1);
  cursor: text;
}

.input-label {
  position: absolute;
  top: calc(50% - 8px);
  left: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 16px;
  transition: all 0.35s ease;
}

.input-container--active .input-label {
  top: 4px;
  font-size: 12px;
}

.input-container--focus .input-label {
  color: rgba(130, 100, 220, 1);
}

.input-field {
  position: relative;
  top: calc(50% - 6px);
  width: 100%;
  padding: 0px;
  border: 0 !important;
  outline: 0 !important;
  background: transparent;
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 1.5em;
  opacity: 0;
}

.input-container--active .input-field {
  opacity: 1;
}

.form .form-footer {
  padding: 20px 0;
  text-align: center;
}

.form .logout {
  position: absolute;
  right: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.form .logout img {
  height: 27px;
}

.form .user-info {
  margin-bottom: 20px;
}

.form .user-info .avatar {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 5px;
  border-radius: 50%;
  background: #fff;
  user-select: none;
  aspect-ratio: 1/1;
}

.form .user-info .avatar-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
}

.form .user-info .avatar img {
  width: 100%;
  height: 100%;
}

.form .user-info .avatar::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 50%;
  background: linear-gradient(90deg, #9600FF, #0019FF);
  content: '';
}

.form .user-info .details {
  font-family: 'Roboto';
  font-size: 18px;
  gap: 4px;
}

.form .user-info .details-username {
  color: #9E9B9B;
  font-size: 16px;
}