@font-face {
  font-family: "helveticaregular";
  src: url("../../fonts/helvetica-webfont.woff2") format("woff2"), url("../../fonts/helvetica-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "helveticabold";
  src: url("../../fonts/helvetica-bold-webfont.woff2") format("woff2"), url("../../fonts/helvetica-bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
#login-tabs-container {
  --tab-bg-color--hover: #F0F0F0;
  --tab-bg-color--active: #FFF;
  --tab-border-color: #BBB;
  --tab-border-color--active: #BBB;
  --tab-border-bottom-color: #BBB;
}
#login-tabs-container #login-tabs-header {
  text-align: center;
  display: flex;
  gap: 0 4px;
  justify-content: center;
  border-bottom: solid 1px var(--tab-border-color);
}
#login-tabs-container #login-tabs-header a {
  --tab-border-color: transparent;
  text-decoration: none;
  width: calc(50% - 10px);
  display: block;
  font-size: 1.1rem;
  padding: 10px 0;
  color: #232323;
  border: solid 1px var(--tab-border-color);
  border-bottom-color: var(--tab-border-bottom-color);
  transition: all 0.2s ease;
  margin-bottom: -1px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#login-tabs-container #login-tabs-header a:hover {
  background-color: var(--tab-bg-color--hover);
}
#login-tabs-container #login-tabs-header a.active {
  --tab-bg-color--hover: var(--tab-bg-color--active);
  --tab-border-bottom-color: var(--tab-bg-color--active);
  --tab-border-color: var(--tab-border-color--active);
  background-color: var(--tab-bg-color--active);
}
#login-tabs-container #login-tabs-body {
  position: relative;
  overflow: hidden;
}
#login-tabs-container #login-tabs-body .login-tabs-body-item {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  padding-top: 30px;
  transition: all 0.25s ease, opacity 0.15s ease, z-index 0s linear;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
}
#login-tabs-container #login-tabs-body .login-tabs-body-item:first-child {
  transform: translateX(-150px);
}
#login-tabs-container #login-tabs-body .login-tabs-body-item:last-child {
  transform: translateX(150px);
}
#login-tabs-container #login-tabs-body .login-tabs-body-item.active {
  display: block;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
  transform: translate(0);
}

.login__separador-ou {
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
.login__separador-ou span {
  background-color: white;
  display: inline-block;
  padding: 0 10px 4px;
  z-index: 1;
  position: relative;
}
.login__separador-ou:after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  top: 50%;
  margin-top: -1px;
  background-color: #DDD;
}

.social-login__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.button-social-login {
  --btn-main-color: hsl(206deg, 6%, 25%);
  --btn-color: hsl(206deg, 6%, 25%);
  --btn-background: hsl(0deg, 0%, 100%);
  --btn-border-color: hsl(220deg, 9%, 87%);
  --btn-hover-color: hsl(206deg, 6%, 25%);
  --btn-hover-background: #f2f2f2;
  --btn-hover-border-color: #cdd0d5;
  --btn-active-color: hsl(206deg, 6%, 25%);
  --btn-active-background: #e6e6e6;
  --btn-active-border-color: #bfc3ca;
  --btn-disabled-color: hsl(206deg, 6%, 25%);
  --btn-disabled-background: hsl(0deg, 0%, 100%);
  --btn-disabled-border-color: hsl(220deg, 9%, 87%);
  --btn-focus-outline-rgb: 191, 195, 202;
  --icon-size: 24px;
  min-height: 48px;
  display: flex;
  justify-content: stretch;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-transform: none;
  padding: 12px;
}
.button-social-login .button-social-login__icon {
  width: var(--icon-size);
  height: var(--icon-size);
}
.button-social-login .button-social-login__label {
  flex: 1 1 auto;
  text-align: center;
  padding-right: var(--icon-size);
}