body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
}
.main{
	width: 350px;
	height: 500px;
	background: red;
	overflow: hidden;
	background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/ cover;
	border-radius: 10px;
	box-shadow: 5px 20px 50px #000;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
    background-color: #1f1f1f;
    padding: 30px;
    width: 450px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  ::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #aaa;
  }
  .form button {
    align-self: flex-end;
  }
  .form a{
    color: rgb(0, 136, 255);
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .form a:hover {
    color: #3f95f2;
  }
  .flex-column > label {
    color: #f1f1f1;
    font-weight: 600;
  }
  .inputForm {
    border: 1.5px solid #333;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
    background-color: #2b2b2b;
  }
  .input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
    background-color: #2b2b2b;
    color: #f1f1f1;
  }
  .input:focus {
    outline: none;
  }
  .inputForm:focus-within {
    border: 1.5px solid #2d79f3;
  }
  .button-submit {
    margin: 20px 0 10px 0;
    background-color: #2d79f3;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
  }
  .p {
    text-align: center;
    color: #f1f1f1;
    font-size: 14px;
    margin: 5px 0;
  }
  .btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #333;
    background-color: #2b2b2b;
    color: #f1f1f1;
    cursor: pointer;
    transition: 0.2s ease-in-out;
  }
  .btn:hover {
    color: #ed3d3d;
    border: 1px solid #2d79f3;
  }
.tps-content {
    margin-top: 110px;
    background-color: #0c0c0c;
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center; 
    padding: 60px;
    border-radius: 23px;
  }
.notifications-container {
  width: 390px;
  height: auto;
  font-size: 0.875rem;
  line-height: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.flex {
  display: flex;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.error-alert {
  border-radius: 0.375rem;
  padding: 1rem;
  background-color: rgb(254 242 242);
}
.error-svg {
  color: #F87171;
  width: 1.25rem;
  height: 1.25rem;
}
.error-prompt-heading {
  color: #991B1B;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: bold;
}
.error-prompt-container {
  display: flex;
  flex-direction: column;
  margin-left: 1.25rem;
}
.error-prompt-wrap {
  margin-top: 0.5rem;
  color: #B91C1C;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.error-prompt-list {
  padding-left: 1.25rem;
  margin-top: 0.25rem;
  list-style-type: disc;
}
.loader {
  width: 4em;
  margin-top: 20px;
  margin-left: 40%;
  height: 4em;
}
.loader__eye1,
  .loader__eye2,
  .loader__mouth1,
  .loader__mouth2 {
  animation: eye1 3s ease-in-out infinite;
}
.loader__eye1,
  .loader__eye2 {
  transform-origin: 64px 64px;
}
.loader__eye2 {
  animation-name: eye2;
}
.loader__mouth1 {
  animation-name: mouth1;
}
.loader__mouth2 {
  animation-name: mouth2;
  visibility: hidden;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 90%, 10%);
    --fg: hsl(var(--hue), 90%, 90%);
  }
}
@keyframes eye1 {
  from {
    transform: rotate(-260deg) translate(0, -56px);
  }
  50%,
    60% {
    animation-timing-function: cubic-bezier(0.17, 0, 0.58, 1);
    transform: rotate(-40deg) translate(0, -56px) scale(1);
  }
  to {
    transform: rotate(225deg) translate(0, -56px) scale(0.35);
  }
}
@keyframes eye2 {
  from {
    transform: rotate(-260deg) translate(0, -56px);
  }
  50% {
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
  }
  52.5% {
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1, 0);
  }
  55%,
    70% {
    animation-timing-function: cubic-bezier(0, 0, 0.28, 1);
    transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
  }
  to {
    transform: rotate(150deg) translate(0, -56px) scale(0.4);
  }
}
@keyframes eyeBlink {
  from,
    25%,
    75%,
    to {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0);
  }
}
@keyframes mouth1 {
  from {
    animation-timing-function: ease-in;
    stroke-dasharray: 0 351.86;
    stroke-dashoffset: 0;
  }
  25% {
    animation-timing-function: ease-out;
    stroke-dasharray: 175.93 351.86;
    stroke-dashoffset: 0;
  }
  50% {
    animation-timing-function: steps(1, start);
    stroke-dasharray: 175.93 351.86;
    stroke-dashoffset: -175.93;
    visibility: visible;
  }
  75%,
    to {
    visibility: hidden;
  }
}
@keyframes mouth2 {
  from {
    animation-timing-function: steps(1, end);
    visibility: hidden;
  }
  50% {
    animation-timing-function: ease-in-out;
    visibility: visible;
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -351.86;
  }
}
.select-box {
  position: relative;
  width: 26rem;
}
.select-box input {
  font-size: 1.1rem;
  border: .1rem solid transparent;
  outline: none;
}
input[type="tel"] {
  border-radius: 0 .5rem .5rem 0;
}
.select-box input:focus {
  border: .1rem solid var(--primary);
}
.container_codeNm{
  display: flex; 
  align-items: center; 
  gap: 10px;
}
.selected-option {
  width: 140px;
  height: 30px;
  margin-right: 20px;
  background-color: #ffffff;
  border-radius: .5rem;
  overflow: hidden;
  align-content: center;
  margin: 10px;
  align-items: center;
}
.selected-option div{
  position: relative;
  width: 6rem;
  cursor: pointer;
}
.selected-option div::after{
  position: absolute;
  content: "";
  right: .8rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: .8rem;
  height: .8rem;
  border-right: .12rem solid var(--primary);
  border-bottom: .12rem solid var(--primary);
  transition: .2s;
}
.selected-option div.active::after{
  transform: translateY(-50%) rotate(225deg);
}
.select-box .options {
  position: absolute;
  width: 95%;
  background-color: #ffffff;
  border-radius: .5rem;
  display: none;
}
.select-box .options.active {
  display: block;
}
.select-box .options::before {
  position: absolute;
  content: "";
  left: 1rem;
  top: -1.2rem;
  width: 0;
  height: 0;
  border: .6rem solid transparent;
  border-bottom-color: var(--primary);
}
input.search-box {
  background-color: var(--primary);
  color: #232323;
  border-radius: .5rem .5rem 0 0;
  padding: 1.4rem 1rem;
}
.select-box ol {
  list-style: none;
  max-height: 23rem;
  overflow: overlay;
}
.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}
.select-box ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ccc;
  border-radius: .4rem;
}
.select-box ol li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.select-box ol li.hide {
  display: none;
}
.select-box ol li:not(:last-child) {
  border-bottom: .1rem solid #eee;
}
.select-box ol li:hover {
  background-color: lightcyan;
}
.select-box ol li .country-name {
  margin-left: .4rem;
}
.header-area .main-nav .logo {
  flex-basis: 25%;
  margin-right: 5%;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-area .main-nav .logo img {
  width: 211px;
}
@media (min-width: 1201px) {
  .header-area .main-nav .logo img {
    margin-top: -20px;
  }
}
@media (max-width: 1200px) {
  .header-area .main-nav .logo img {
    margin-top: -10px;
  }
  .header-area .main-nav .logo img {
    width: 222px;
    height: 60px;
  }
}
@media (max-width: 480px){
  .tps-content #form-login {
    margin-left: 0px;
    width: 100%;
  }
  .tps-content {
    padding: 0px;
  }
  .select-box {
    width: 100%;
  }
.notifications-container {
  width: 300px;
}
.header-area .main-nav .logo {
  position: absolute;
  left: 25px;
  top: 10px;
  width: 75px;
  height: 30px;
}
.header-area .main-nav .logo img {
  width: 182px;
  height: 50px;
}
.container-buy {
  width: 370px;
}
}
@media (min-width: 481px) and (max-width: 767px) {
  #form-login {
    margin-left: 5px;
  }
  .notifications-container {
    width: 400px;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 25px;
    top: 10px;
    width: 75px;
    height: 30px;
  }
  .header-area .main-nav .logo img {
    width: 220px;
    height: 60px;
  }
  .container-buy {
    width: 370px;
  }
}
.button-submiter {
  margin: 20px 0 10px 0;
  background-color: #2df334;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}