html {
    height: 100vh;
    width: 100%;
    background: #7FDBFF 10%;
}

a {
    outline: none !important;
    text-decoration: none !important;
    color: #7FDBFF !important;
}

a:link {
    color: #7FDBFF !important;
}

::placeholder {
    color: #A9A9A9;
    opacity: 1;
}

.container {
	width: 450px !important;
	height: 250px;
    border-radius: 25px;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
    background: #f8f8ff;
    padding: 30px;
    border-color: #9ecaed;
    box-shadow: 12px 12px 2px 1px rgba(0, 0, 255, .2);
    align-items: center;
}

.title {
    text-align: center;
    margin: 6px;
}


.h6 {
    text-align: center;
    margin: 8px;
  }


#input {
    outline: none;
    border-color: #9ecaed;
    color: #A9A9A9;
    border: 0;
    border-radius: 10px;
    padding: 4px;
    width: 100%;
    box-shadow: 0 0 15px 4px rgba(0,0,0,0.06);
    position: relative;
    display: inline-block;
    margin: 5px;
}

.user-input {
    display: block;
}

#button{
    background-color: #7FDBFF;
    border-radius: 5px;
    border: none;
    color: white;
    padding: 6px 0px;
    width: 100%;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    bottom: 15px;
    margin: 5px;
    margin-bottom: 30px;
  }

  #index_button{
    background-color: #7FDBFF;
    border-radius: 5px;
    border: none;
    color: white;
    padding: 6px 0px;
    width: 100%;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    bottom: 15px;
    margin: 5px;
    margin-bottom: 5px;
  }

  .lds-ellipsis {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #7FDBFF;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  
  #loader {
      border: 8px solid #f8f8ff; /* Light grey */
      border-top: 8px solid #7FDBFF; /* Blue */
      border-radius: 50%;
      background: none;
      position: relative;
      width: 60px;
      height: 60px;
      margin: auto;
      text-align: center;
      animation: spin 0.1s linear infinite;
  }

  .mySpinner {
      display: none;
  }