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

    :root {
      --primary-color: #c6c3c3;
      --second-color: #ffffff;
      --black-color: #000000;
      --tercer-color: transparent;
    }

    body {
      background-image: url("../../../application/assets/img/download-6-scaled.jpeg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }

    a {
      text-decoration: none;
      color: var(--second-color);
    }

    a:hover {
      text-decoration: underline;
    }

.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}

    .wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-color: rgba(0, 0, 0, 0.2);
    }

    .banner_header {
      position: absolute;
      top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 0 0 20px 20px;
      z-index: 1;
    }

    .login-header span {
      font-size: 30px;
      color: var(--black-color);
    }

    .login-header::before {
      content: "";
      position: absolute;
      top: 0;
      left: -30px;
      width: 30px;
      height: 30px;
      border-top-right-radius: 50%;
      background: transparent;
      box-shadow: 15px 0 0 0 var(--primary-color);
    }

    .login-header::after {
      content: "";
      position: absolute;
      top: 0;
      right: -30px;
      width: 30px;
      height: 30px;
      border-top-left-radius: 50%;
      background: transparent;
      box-shadow: -15px 0 0 0 white; /* Removed space before --primary-color */
    }

    .page_footer {
      position: absolute;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 0 0 20px 20px;
      z-index: 1;
      color: white;
      text-align: center;
    }

    .titulo {
      width: 100%;
      text-align: center;
      font-size: 28px;
    }

    #user {
      margin-bottom: 10px;
    }

    /*.label {
      position: absolute;
      top: 8px;
      left: 20px;
      transition: 0.2s;
    }*/

    .label {
      position: absolute;
      top: 0px;
      left: 21px;
      transition: 0.2s;
      /* text-align: center; */
    }

    .input-field:focus ~ .label,
    .input-field:valid .label {
      /* Added missing closing brace here */
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 14px;
      background-color: var(--primary-color);
      border-radius: 30px;
      color: var(--black-color);
      padding: 0 10px;
    } /* Closed the missing brace */

    .icon {
      position: absolute;
      top: 18px;
      right: 25px;
      font-size: 20px;
    }

    .remember-forgot1 {
      display: flex;
      justify-content: space-between;
      font-size: 15px;
    }

    .remember-forgot {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      margin-top: 40px;
    }

    .input-submit {
      width: 100%;
      height: 30px;
      background: #ececec;
      font-size: 16px;
      font-weight: 500;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s;
    }

    .input-submit:hover {
      background: var(--second-color);
    }

    .input-cert {
      width: 45%;
      height: 30px;
      background: #ececec;
      font-size: 16px;
      font-weight: 500;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s;
    }

    .input-cert:hover {
      background: var(--second-color);
    }

    .register {
      text-align: center;
    }

    .register a {
      font-weight: 500;
    }

    @media only screen and (max-width: 504px) {
      .wrapper {
        padding: 20px;
      }

      .login_box {
        padding: 7.5em 1.5em 4em 1.5em;
      }
    }

    @media screen and (max-width: 1952px) {
       .login_box {
        position: relative;
        width: 450px;
        backdrop-filter: blur(25px);
        border: 2px solid white;
        border-radius: 15px;
        padding: 7.5em 2.5em 4em 2.5em;
        color: var(--second-color);
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
        height: 481px;
      }

      .login_box img {
        position: absolute;
        top: -94px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
      }

      .login-header {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        width: 140px;
        height: 100px;
        border-radius: 0 0 20px 20px;
      }

      .login-cert {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        width: 140px;
        height: 100px;
        border-radius: 0 0 20px 20px;
      }

    .input-field::after {
      width: 100%;
      height: 45px;
      font-size: 16px;
      background: transparent;
      color: var(--second-color);
      padding-inline: 20px 16px;
      border: 2px solid white;
      border-radius: 30px;
      outline: none;
      padding-top: 10px;
    }


      .login-cert img {
        position: absolute;
        top: -94px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
      }

      .login-header span {
        font-size: 30px;
        color: var(--black-color);
      }

      .login-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: -30px;
        width: 30px;
        height: 30px;
        border-top-right-radius: 50%;
        background: transparent;
        box-shadow: 15px 0 0 0 white;
      }

      .login-header::after {
        content: "";
        position: absolute;
        top: 0;
        right: -30px;
        width: 30px;
        height: 30px;
        border-top-left-radius: 50%;
        background: transparent;
        box-shadow: -15px 0 0 0 white; /* Removed space before --primary-color */
      }

      .input_box {
        position: relative;
        display: flex;
        flex-direction: column;
        margin: 15px 0;
      }

      .input_cert {
        position: relative;
        /*display: flex;*/
        flex-direction: row;
        margin: 10px 0;
      }

      .input-field {
        width: 100%;
        height: 45px;
        font-size: 16px;
        background: transparent;
        color: var(--second-color);
        padding-inline: 20px 50px;
        border: 2px solid var(--primary-color);
        border-radius: 30px;
        outline: none;
        padding-top: 10px;
      }

      .page_footer {
        position: absolute;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: 0 0 20px 20px;
        z-index: 1;
        color: white;
        text-align: center;
         font-size: 12px;
         visibility: hidden;
      }

      .titulo {
        width: 100%;
        text-align: center;
        font-size: 20px;
      }

      .wrapper {
        position: fixed;
        right: 0%;
        z-index: 100;
        font-size: 15px;
        text-align: center;
      }
    }

    @media screen and (max-width: 450px) {

      .banner_header {
        position: absolute;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: 0 0 20px 20px;
        z-index: 1;
      }

      .label {
        position: absolute;
        top: 1px;
        left: 16px;
        transition: 0.2s;
        font-size: 10px;
      }

      .login_box {
        position: relative;
        width: 450px;
        backdrop-filter: blur(25px);
        border: 2px solid white;
        border-radius: 15px;
        padding: 7.5em 2.5em 4em 2.5em;
        color: var(--second-color);
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
        height: 550px;
      }

      .login_box_r {
        position: relative;
        width: 450px;
        backdrop-filter: blur(25px);
        border: 2px solid var(--primary-color);
        border-radius: 15px;
        padding: 7.5em 2.5em 4em 2.5em;
        color: var(--second-color);
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
        height: 506px;
      }

      .login-header {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        width: 140px;
        height: 100px;
        border-radius: 0 0 20px 20px;
      }

      .login-cert {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-color);
        width: 140px;
        height: 0px;
        border-radius: 0 0 20px 20px;
      }

      .login-header span {
        font-size: 30px;
        color: var(--black-color);
      }

      .login-cert span {
        font-size: 30px;
        color: var(--black-color);
      }
      
      .login-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: -30px;
        width: 30px;
        height: 30px;
        border-top-right-radius: 50%;
        background: transparent;
        box-shadow: 15px 0 0 0 white;
      }

      .login-cert::before {
        content: "";
        position: absolute;
        top: 0;
        left: -30px;
        width: 30px;
        height: 30px;
        border-top-right-radius: 50%;
        background: transparent;
        box-shadow: 15px 0 0 0 white;
      }

      .login-header::after {
        content: "";
        position: absolute;
        top: 0;
        right: -30px;
        width: 30px;
        height: 30px;
        border-top-left-radius: 50%;
        background: transparent;
        box-shadow: -15px 0 0 0 white; /* Removed space before --primary-color */
      }

      .login-cert::after {
        content: "";
        position: absolute;
        top: 0;
        right: -30px;
        width: 30px;
        height: 30px;
        border-top-left-radius: 50%;
        background: transparent;
        box-shadow: -15px 0 0 0 white; /* Removed space before --primary-color */
      }

      .input_box {
        position: relative;
        display: flex;
        flex-direction: column;
        margin: 15px 0;
      }

      .input-field {
        width: 100%;
        height: 45px;
        font-size: 16px;
        background: transparent;
        color: var(--second-color);
        padding-inline: 20px 16px;
        border: 2px solid var(--primary-color);
        border-radius: 30px;
        outline: none;
        padding-top: 10px;
      }

      .page_footer {
        position: absolute;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border-radius: 0 0 20px 20px;
        z-index: 1;
        color: white;
        text-align: center;
         font-size: 12px;
         visibility: hidden;
      }

      .titulo {
        width: 100%;
        text-align: center;
        font-size: 20px;
      }
    }

    @media screen and (max-width: 450px) {
      .wrapper {
        position: fixed;
        right: 0%;
        z-index: 100;
        font-size: 15px;
        text-align: center;
      }


    }