:root {
  --blue: #0094ff;
  --blue--dark: #003e6b;
  --gray: #c7c7c7;
  --black: #171717;
}

@font-face {
  font-family: empathy-icons;
  src: url(./empathy-icons.ttf);
}

*, html {
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: .03125rem;
}

html {
  height: 100%
}

body {
  font-weight: 400;
  height: 100%;
  margin: 0;
}

.content {
  display: flex;
  height: 100%;
  background: radial-gradient(68.11% 130.73% at 75.49% 48.75%, #0676CC 0.33%, #171717 74%);
  background-repeat: no-repeat;
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 76.25rem;
  padding: 2.5rem;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2.5rem;
}

.logo {
  width: 11.6875rem;
  height: 1.75rem;
}

.footer {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.footer-text,
.footer-link {
  color: rgb(165 183 199);
}

.form {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  max-width: 35.875rem;
  height: max-content;
  padding: 3rem 5rem;
  margin-left: 2.75rem;
  background-color: white;
  border-radius: 1.875rem;
  min-height: 35.875rem;
}

.title-signin {
  margin-bottom: 3rem;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 3.1875rem;
}

.field {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
  margin-bottom: 2.25rem;
}

.field-label {
  margin-left: 1.25rem;
  font-weight: 600;
}

.input-wrapper {
  position: relative;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.input {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 0.0625rem solid var(--gray);
  border-radius: 28.625rem;
  color: var(--black);
}

.input::placeholder {
  color: var(--black);
  opacity: 0.5;
}

.input:focus {
  border-color: var(--blue);
}

.input-error {
  position: absolute;
  top: 100%;
  margin-left: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: .03125rem;
  line-height: 1rem;
  color: #EC5151;
}

button {
  border: none;
  margin: 0 auto;
  outline: none;
  background: none;
}

.button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--blue);
  color: white;
  text-align: center;
  transition: all 0.5s;
  border-radius: 3.125rem;
}

.button:hover {
  background-color: var(--blue--dark);
}

.sign-up-text {
  margin-top: 1rem;
  font-weight: 300;
  align-self: flex-end;
}

.button-link {
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.button-link:hover {
  cursor: pointer;
}

.field-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eicon {
  font-family: empathy-icons !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.not-visible {
  display: none;
}

.password-toggle {
  position: absolute;
  right: 1rem;
}

.password-toggle:hover {
  cursor: pointer;
}

.password-icon {
  color: var(--gray);
}

