/* run 'npm run watch:sass' and write css in style.scss only */
@font-face {
  font-family: "Montserrat";
  src: url("../../assets/fonts/Montserrat-Bold.ttf");
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  height: 100vh;
  font-size: 1.6rem;
  font-family: "Montserrat", "Open-sans";
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000;
}

div {
  margin: 0;
  padding: 0;
}

img {
  -webkit-user-drag: none;
}

span {
  color: #CB3233;
  font-weight: bold;
}

.container {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container img.logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 20rem;
}
.container video {
  height: 100vh;
  filter: blur(6px);
  transition: filter 0.3s ease;
  will-change: filter;
  position: relative;
}
.container video.active {
  filter: blur(0);
}
.container .gradient {
  background: linear-gradient(to top, transparent 0%, #000000);
  width: 100%;
  height: 125px;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}
.container .gradient--2 {
  background: linear-gradient(to bottom, transparent 0%, #000000);
  width: 100%;
  height: 125px;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
}
.container .step {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -10%);
  transition: opacity 0.3s ease;
  will-change: opacity;
  z-index: 2;
}
.container .step.active {
  display: flex;
  opacity: 1;
}
.container .step--0 {
  top: 50%;
  transform: translate(-50%, -50%);
  bottom: unset;
}
.container .step p {
  color: #fff;
  text-shadow: 1px 2px 6px #000;
  font-size: 3rem;
  max-width: 455px;
}
.container .step__button {
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: opacity;
  border: 2px solid #fff;
  border-radius: 20px 0px 0px 20px;
  font-weight: bold;
  color: #fff;
  background-color: #000000a5;
  text-align: center;
  font-size: 3.2rem;
  min-width: 30rem;
  padding: 0;
  padding-left: 2.5rem;
  cursor: pointer;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.container .step__button--no_image {
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 20px;
}
.container .step__button > img {
  width: 8.5rem;
}
.container .video__play {
  cursor: pointer;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.container .video__play > img {
  width: 15rem;
}

.btn-ssos {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

.x_sso_button {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  background-color: #000 !important;
  color: white !important;
  padding: 7px 12.4px 7px 7px !important;
  font-size: 16px !important;
  font-weight: 100 !important;
  text-transform: none !important;
  gap: 0.50rem !important;
  border-radius: 3px !important;
}


.username-suggestion button {
  background-color: #fff !important;
  border: none !important;
  padding: 5px 24px 5px 24px !important;
  cursor: pointer !important;
  border-radius: 5px !important;
  text-decoration: none !important;
}

.username-suggestion button:hover {
  background-color: rgb(230, 230, 230) !important;
  color: rgb(178, 178, 178) !important;
}