* {
  margin: 0;
  padding: 0;
}

/* ****************************************
******************LOGIN********************
**************************************** */

.login_page {
  padding: 0;
}

.login_box {
  width: 100%;
  /* min-height: 200vh; */
  position: absolute;
  padding-top: 40px;
  /*padding-bottom:20px;*/
  animation: name duration timing-function delay iteration-count direction fill-mode;
}



.svg_img {
  position: fixed;
  min-width: 100%;
  height: 120vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* height: 100vh; */
  /* background: url('../img/Web.png');
    background-size: 100% 100%;
    background-attachment: fixed; */
}

@media(min-width:768px) {
  .login_con {
    position: fixed;
    right: 100px;
  }

  .login_box {
    padding-top: 10px;

  }



  #myVideo {
    position: fixed;
    min-width: 100%;
    height: 120vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
  }

  #Group_11 {
    opacity: 0;
    animation: diamondOpacity 3s ease-in-out;
    animation-delay: 2.8s;
    animation-fill-mode: forwards;
    /* animation-iteration-count: infinite; */
  }

  @keyframes diamondOpacity {

    /* 0%   { opacity: 1; }
    50%  { opacity: 0.1; }
    100% { opacity: 1;}*/
    0% {
      opacity: 0
    }

    100% {
      opacity: 1
    }
  }

  #icons_Q2-2 {

    animation-name: diamondScale;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform-origin: 1% 2%;
  }

  @keyframes diamondScale {
    0% {
      transform: scale(0.8);
    }

    50% {
      transform: scale(1.3);
    }

    100% {
      transform: scale(0.8);
    }
  }

  /* ************************************************
******************** LOGIN  FORM ******************
*************************************************** */

  .panel__headers {
    list-style: none;
    margin: 0;
    padding: 0;
  }



  .panel_link,
  .form__retrieve-pass {
    text-decoration: none;
    cursor: pointer;
  }

  .panel_link,
  .form__retrieve-pass:active,
  .panel_link,
  .form__retrieve-pass:hover {
    outline: 0;
  }

  .panel {
    /*width: 100%;*/
    /*height: 100%;*/
    overflow-y: auto;
  }

  .panel .panel__header a:hover {
    color: #ffc451;
  }

  @media screen and (min-width: 768px) {
    .panel {

      width: 350px;
      /*height: 500px;*/
      overflow-y: visible;
    }
  }

  /**
   * Blur
   */
  .panel_blur {
    position: absolute;
  }

  /**
   * Panel 
   */
  .panel {

    position: absolute;
    top: 120px;
    right: 20%;
    z-index: 1;
  }

  .panel__register-form,
  .panel__password-form {
    display: none;
  }

  .panel__register-form .form__submit {
    margin-top: 5px !important;
  }

  .panel__form-wrapper {
    width: 100%;
    height: 100%;
    padding: 10%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  @media screen and (min-width: 768px) {
    .panel__form-wrapper {
      padding: 10% 15%;
      border-radius: 10px;
      overflow-y: visible;
    }
  }

  @media(max-width:768px) {
    .panel {
      width: 100%;
      right: 0%;
    }
  }

  @media(max-width:580px) {
    .panel {
      width: 90%;
      left: 0;
      margin: auto;
    }
  }


  .panel__prev-btn {
    width: 24px;
    height: 24px;
    background: none;
    padding: 0;
  }

  .panel__prev-btn svg {
    transition: fill 0.3s;
  }

  .panel__prev-btn:hover>svg {
    fill: #ff1552;
  }

  .panel__headers {
    padding: 10px 0;
    text-align: center;
  }

  .panel__header {
    font-size: 1.375rem;
  }

  .panel__header:first-child {
    padding-bottom: 5px;
  }

  .panel__header.active>.panel__link {
    color: #ff1552;
    font-size: 2rem;
  }

  .panel__link {
    color: white;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1rem;
  }

  /**
   * Styles for <form>
   */
  .form__row {
    position: relative;
    padding-top: 40px;
  }

  .form__row.has-error>.form__error:after {
    display: block;
  }

  .form__input {
    color: #fff;
    width: 100%;
    padding: 5px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: none;
  }

  .form__input:focus,
  .form__input:active {
    outline: 0;
  }

  .form__input:focus~.form__label,
  .form__input:active~.form__label,
  .form__input:valid~.form__label {
    bottom: 30px;
    font-size: 0.75rem;
  }

  .form__input:focus~.form__bar,
  .form__input:active~.form__bar {
    left: 0;
    right: 0;
    width: 100%;
  }

  .form__bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    display: block;
    width: 0;
    height: 2px;
    background-color: #ff1552;
    transition: all 0.3s;
  }

  .form__label {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    transition: all 0.3s;
    pointer-events: none;
  }

  .form__submit {
    width: 100%;
    padding: 10px 0;
    margin-top: 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    background-color: #ff1552;
    cursor: pointer;
  }

  .form__retrieve-pass {
    display: block;
    padding: 15px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
  }

  .form__retrieve-pass:hover {
    color: #fff;
  }

  .form__error {
    position: absolute;
    bottom: -20px;
    display: block;
    width: 100%;
    height: 20px;
    color: #ff1552;
    font-size: 0.75rem;
    line-height: 20px;
  }

  .form__error:after {
    content: "x";
    position: absolute;
    bottom: 20px;
    right: -20px;
    display: none;
    width: 20px;
    height: 25px;
    font-size: 1.125rem;
    line-height: 25px;
    text-align: center;
    color: #ff1552;
  }

  .form__info {
    text-align: center;
  }


  /* *******************************************
  ********************SVG **********************
  ********************************************** */


  /* Slider Blog */