.material-symbols-outlined {
  
    color: rgb(0, 0, 0);
    margin-left: 20px;
    margin-top: 20px;
    padding-left: 0px;
    padding-bottom: 1px;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
  }
  .material-symbols-outlined:hover{
    font-variation-settings: 
    'FILL' 100;
    transform: scale(1.2);
  }


body {

	background-size: 100% 100%;
	
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


html, body {
    padding: 0px;
    margin: 0px;
    
    font-family: "Raleway", sans-serif;
    color: #FFF;
    height: 100%;
  }
  
  .container {
    min-height: 400px;
    max-width: 400px;
    
    margin: 100px auto;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 2px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);

    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-animation: hi 0.5s;
            animation: hi 0.5s;
    /* -webkit-transform: translateZ(0px); */
  }
  .container * {
    box-sizing: border-box;
   
    border-radius: 10px;
  }
  
  .pages {
    flex: 1;
    white-space: nowrap;
    position: relative;
    transition: all 0.4s;
    display: flex;
  }
  .pages .page {
    min-width: 100%;
   
    padding: 20px 15px;
    padding-top: 0px;
    background: linear-gradient(to left, #955DFF, #6FAAFF);
  }
  .pages .page:nth-of-type(1) .input {
    transform: translateX(-100%) scale(0.5);
  }
  .pages .page:nth-of-type(2) .input {
    transform: translateX(100%) scale(0.5);
  }
  .pages .page .input {
    transition: all 1s;
    opacity: 0;
    transition-delay: 0s;
  }
  .pages .page.signup {
    background: linear-gradient(to left, #6FAAFF, #955DFF);
  }
  .pages .page .title {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    line-height: 14px;
  }
  .pages .page .title i {
    vertical-align: text-bottom;
    font-size: 19px;
  }
  .pages .page .input {
    margin-top: 20px;
  }
  .pages .page input.text {
    background: #F6F7F9;
    border: none;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0px 10px;
    color: rgba(0, 0, 0, 0.5);
    outline: none;
  }
  .pages .page input[type=submit] {
    background: rgba(0, 0, 0, 0.5);
    color: #F6F7F9;
    height: 40px;
    line-height: 40px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-weight: 600;
  }
  
  .tabs {
    max-height: 50px;
    height: 50px;
    display: flex;
    background: #48c5ff;
  }
  .tabs .tab {
    flex: 1;
    color: #777575;
    text-align: center;
    font-weight: bolder;
    line-height: 50px;
    transition: all 0.2s;
  }
  .tabs .tab .text {
    font-size: 14px;
    transform: scale(1);
    transition: all 0.2s;
  }
  
  input[type=radio] {
    display: none;
  }
  
  input[type=radio]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) {
    box-shadow: inset -3px 2px 5px rgba(0, 0, 0, 0.25);
    color:white;
  }
  input[type=radio]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) .text {
    transform: scale(0.9);
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages {
    transform: translateX(0%);
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input {
    opacity: 1;
    transform: translateX(0%);
    transition: all 0.5s;
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(1) {
    transition-delay: 0.2s;
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(2) {
    transition-delay: 0.4s;
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(3) {
    transition-delay: 0.6s;
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(4) {
    transition-delay: 0.8s;
  }
  input[type=radio]:nth-of-type(1):checked ~ .pages .page:nth-of-type(1) .input:nth-child(5) {
    transition-delay: 1s;
  }
  
  input[type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) {
    box-shadow: inset 3px 2px 5px rgba(0, 0, 0, 0.25);
    color: #3F4C7F;
    color:white;
  }
  input[type=radio]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) .text {
    transform: scale(0.9);
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages {
    transform: translateX(-100%);
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input {
    opacity: 1;
    transform: translateX(0%);
    transition: all 0.5s;
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(1) {
    transition-delay: 0.2s;
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(2) {
    transition-delay: 0.4s;
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(3) {
    transition-delay: 0.6s;
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(4) {
    transition-delay: 0.8s;
  }
  input[type=radio]:nth-of-type(2):checked ~ .pages .page:nth-of-type(2) .input:nth-child(5) {
    transition-delay: 1s;
  }
  
  @-webkit-keyframes hi {
    from {
      transform: translateY(50%) scale(0, 0);
      opacity: 0;
    }
  }
  
  @keyframes hi {
    from {
      transform: translateY(50%) scale(0, 0);
      opacity: 0;
    }
  }