@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

html {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  background-color: #ffffff;
  color: #2e3862;
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
}

/* Container */

.container-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-screen{
  min-height: 100vh;
}

@media (max-width: 480px) {
  .container-screen {
    padding: 32px 20px;
    box-sizing: border-box;
  }
}

.flex-column{
  display: flex;
  flex-direction: column;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #eff2f1;
}

/* Gap */

.gap-16{
  gap: 16px;
}

.gap-8{
  gap: 8px;
}

/* form */

form {
  margin-block-end: 0;
}

.input {
  padding: 14px 16px;
  line-height: 1rem;
  border: 1px solid #eff2f1;
  border-radius: 0.5rem;
  font-size: 14px;
  font-family: inherit;
  background-color: #f9fbfa;
  transition: border-color 0.2s linear;

  &:active,
  &:focus {
    outline: none;
    border-color: #ff6136;
  }
}

.button{
  padding: 14px 16px;
  background-color: #ff6136;
  color: #ffffff;
  border: none;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border-radius: 8px;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

.button:hover{
  background-color: #FF7C48FF;
}

/* Text */

.text-xs{
  font-size: 12px;
}

.text-sm{
  font-size: 14px;
}

.text-md{
  font-size: 1rem;
}

.text-lg{
  font-size: 1.1rem;
}

.text-xl{
  font-size: 1.2rem;
}

.text-tertiary{
  color: #9a9c9b;
}