@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

/* SCROLL BAR */

::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-thumb {
  background-color: #C49231;
  border-radius: 5px;
}

/* SCROLL BAR */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html,body{
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background-size: 600px;
  color: #C49231;
  background-image: url(/static/images/bg.jpeg);
  /* background-color: #1B1B26; */
  overflow-y: clip;
  overflow-x: clip;
}

::selection{
  background: #000000;
  color: #fff;
}

.wrapper{
  align-content: center;
  width: auto;
  height: auto;
  overflow: hidden;
  background-image: url(/static/images/login.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

input[type="radio"]{
  display: none;
}

.container{
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.wrapper .form-container{
  align-items: center;
  margin-left: -5%;
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container .form-inner{
  width: 290px;
  align-items: center;
  display: block;
}

.form-container .form-inner form{
  /*! width: 70px; */
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  margin-top: -27.5%;
}

.form-inner form .field{
  align-content: center;
  height: 50px;
  width: 200px;
  margin-top: 8px;
  margin-left: 58px;
}

.form-inner form .field input{
  height: 100%;
  width: 100%;
  align-self: center;
  outline: none;
  padding-left: 6%;
  border-radius: 5px;
  border: 1px solid #C49231;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}

.form-inner form .field-password input{
  width: 100%;
}

.field{
  position: relative;
}
.user-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url(/static/images/user.png);
  background-size: contain;
  background-color: transparent;
  color: transparent;
  border: none;
}

.field.field-password .textbox[type="password"] + .view-password-button {
  background-image: url(/static/images/hide_password.png);
  background-size: contain;
  background-color: transparent;
  color: transparent;
  border: none;
  cursor: pointer;
}

.field.field-password .textbox[type="text"] + .view-password-button{
  background-image: url(/static/images/show_password.png);
  background-size: contain;
  background-color: transparent;
  color: transparent;
  border: none;
  cursor: pointer;
}
.field-password {
  position: relative;
}
#username,#pwd{
  padding-right: 35px;
  width: 100%;
}
.textbox {
  padding-right: 40px;
}

.view-password-button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

#fp-submit{
  border: none;
}

.confirmation-message{
  margin-top: 18px;
}
.fp-email-field {
  height: 5vh;
  width: fit-content;
  align-self: center;
  outline: none;
  padding-left: 2%;
  border-radius: 5px;
  border: 1px solid #C49231;
  border-top-width: 2px;
  border-bottom-width: 2px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-inner form .field input:focus{
  color: #1B1B26;
}

.form-inner form .field input::placeholder{
  color: #C49231;
  transition: all 0.3s ease;
}

form .field input:focus::placeholder{
  color: #1B1B26;
}

.form-inner form .pass-link{
  margin-top: 4px;
  margin-left: 58px;
  width: 200px;
  margin-bottom: 20px;
}

.form-inner form .signup-link{
  font-size: 14px;
  text-align: center;
  color: #C49231;
  margin-top: 4px;
  margin-left: 58px;
  width: 200px;
}

.form-inner form .pass-link a{
  font-size: 15px;
  font-weight: 400;
  color: #C49231;
  text-decoration: none;
}

.form-inner form .signup-link a{
  color: #fff;
  text-decoration: none;
}

.form-inner form .pass-link a:hover{
  text-decoration: underline;
}

.form-inner form .signup-link a:hover{
  text-decoration: underline;
}

form .btn{
  height: 50px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: #C49231;
  /* background: -webkit-linear-gradient(right, #775a1e, #C49231, #775a1e, #C49231); */
  border-radius: 5px;
  transition: all 0.4s ease;;
}

form .btn:hover .btn-layer{
  left: 0;
  background: #fff;
}

form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #000000;
  padding-left: 0;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.about{
  margin-top: 15%;
  text-align: center;
  color: #fff;
}

.au{
  position: relative;
  margin-top: 30%;
  padding: 2px 12px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #C49231;
  background: #000;
  cursor: pointer;
}

.fp{
  cursor: pointer;
}

.container#blur.active{
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

#popup{
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
  background: #1B1B26;
  color: #C49231;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  text-align: center;
  text-justify: inter-word;

}

#popup2{
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  padding: 50px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
  background: #1B1B26;
  color: #C49231;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;

}

.logo{
  width: auto;
  height: 120px;
  margin-bottom: 30px;
  margin-left: 180px;
  background-image: url(/static/images/cinemate_logo_main.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#popup.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
#popup2.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}

.content{
  text-align: center;
  width:100px;
  margin-top: 2px;
  margin-left: 105px;
}

h3{
  color: whitesmoke;
}

.popup_scroll{
  height: 170px;
  overflow-y: scroll;
}

@media all and (max-width:481px) {
  #popup{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #1B1B26;
    color: #C49231;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    font-size: 14px;
    text-align: center;
    text-justify: inter-word;
  }
  #popup2{
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .30);
    background: #1B1B26;
    color: #C49231;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    font-size: 14px;
    text-align: center;
    text-justify: inter-word;
  }
  .logo{
    width: auto;
    height: 120px;
    margin-bottom: 30px;
    margin-left: 35px;
    background-image: url(/static/images/cinemate_logo_main.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
}


.cls{
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  color: #000;
  background: #C49231;
  position: relative;
  margin-top: 5%;
  padding: 2px 12px;
  cursor: pointer;
}

/* LOADING */
.loading-title {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.loading-main{
  display: flex;
  justify-content: center;

}
.loading-image{
  width: 100%;
  display: flex;
  justify-content: center;
}

.loading-image img{
  width: 80px;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0b14;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  }
  #loading-spinner {
  position: relative;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 10px solid #0b0b14;
  border-top-color: #C49231;
  animation: rotating-spinner 1s linear infinite;
  }
  .loading-title{
  margin: 5%;
  color: azure;
  font-size: x-large;
  }
  @keyframes rotating-spinner {
  from {
  transform: rotate(0deg);
  }
  
  to {
  transform: rotate(360deg);
  }
}

@media only screen and (min-width: 0px) and (max-width: 320px) {

  .loading-title{
      font-size: small;
      text-align: center;
  }
  #loading-spinner{
      width: 70px;
      height: 61px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  .popup_scroll{
    height: 275px;
    overflow-y: scroll;
  }

}
/*for small phone */

@media only screen and (min-width: 320px) and (max-width: 375px) {
  .loading-title{
      font-size: medium;
  }
  #loading-spinner{
      width: 78px;
      height: 69px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  .popup_scroll{
    height: 275px;
    overflow-y: scroll;
  }

}
/*for medium phone*/

@media only screen and (min-width: 375px) and (max-width: 426px) {

  .loading-title{
      font-size: large;
  }
  #loading-spinner{
      width: 80px;
      height: 71px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  .popup_scroll{
    height: 275px;
    overflow-y: scroll;
  }

}
/*for large phone*/

@media only screen and (min-width: 426px) and (max-width: 768px) {
  .loading-title{
      font-size: large;
  }
  #loading-spinner{
      width: 80px;
      height: 71px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  img{
      width: 90px;
  }

}
/*for Tablet*/

@media only screen and (min-width: 768px) and (max-width: 1024px) {

  .loading-title{
      font-size: x-large;
  }
  #loading-spinner{
      width: 89px;
      height: 80px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  img{
      width: 90px;
  }

}
/*for small laptop*/

@media only screen and (min-width: 1024px) and (max-width: 1600px) {

  .loading-title{
      font-size: xx-large;
  }
  #loading-spinner{
      width: 99px;
      height: 90px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  img{
      width: 95px;
  }

}
/*for large laptop*/

@media only screen and (min-width: 1600px){

  .loading-title{
      font-size: 3.5rem;
  }
  #loading-spinner{
      width: 220px;
      height: 200px;
      border: 2px solid #0b0b14;
      border-top-color: #C49231;
  }
  img{
      width: 150px;
  }

}
/*4K screen*/

  /* LOADING */

  @media only screen and (max-width: 600px){
    html, body{

    
      overflow-x: clip;
      overflow-y: clip;
  }
}

