
  html {
    height: 100%;
    overflow-x: hidden;
  }

  body {
    margin: 0;
    padding: 0;
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    
  }

  #fullscreen {
    margin: 0;
    padding: 0;
    flex-direction: column;
  }

  #fullscreen .container {
    width: 1050px;
    height: 510px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    position: relative;
    align-items: center;
    overflow: hidden;
  }

  /* All the box! */
  #fullscreen .container .signbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 30px;
  }

  .checkdiv {
    margin-top: 30px;
    margin-bottom: 33px;
    color: black;
    text-align: center;
  }

  #fullscreen .container .signbox .imgdiv {
    position: relative;
    width: 600px;
    height: 515px;
    transition: 0.5s;
  }

  #fullscreen .container .signbox .imgdiv img {
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }

  #fullscreen .container .signbox .formbox {
    background: #fff;
    width: 100%;
    height: 100%;
    padding: 25px;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  form {
    width: 100%;
    height: 100%;
  }

  form img {
    margin-bottom: 30px;
  }

  #fullscreen .container .signbox .formbox form input[type='text'],
  #fullscreen .container .signbox .formbox form input[type='email'],
  #fullscreen .container .signbox .formbox form input[type='password'],
  #fullscreen .container .signbox .formbox form textarea {
    color: #333;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    background: #f5f5f5;
    border: none;
    outline: none;
    box-shadow: none;
  }

  #fullscreen .container .signbox .formbox form textarea {
    text-align: left;
  }

  #fullscreen .container .signbox .formbox form input[type="submit"] {
    max-width: auto;
    background: #27353f;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.5s;
  }

/* Style for the form group and the label above the input */
.form-floating {
    position: relative;
    margin-bottom: 20px;
  }
  
  .form-floating label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #203644;
    margin-bottom: 8px; /* Space between label and input */
    transition: all 0.3s ease-in-out;
  }
  
  /* Input field styles */
  #floatingInput {
    background: linear-gradient(135deg, #56758d, #27353f);
    color: rgb(49, 48, 48);
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Placeholder styles */
  #floatingInput::placeholder {
    color: #203644
  }
  
  /* Focus and active states */
  #floatingInput:focus {
    background: linear-gradient(135deg, #2e4e64, #1e2a33);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.3);
    outline: none;
  }
  
  #floatingInput:active {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 15px rgba(0, 0, 0, 0.2);
  }
  
  #floatingPassword {
    background: linear-gradient(135deg, #56758d, #27353f);
    color: white;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Placeholder styles */
  #floatingPassword::placeholder {
    color: #203644
  }
  
  /* Focus and active states */
  #floatingPassword:focus {
    background: linear-gradient(135deg, #2e4e64, #1e2a33);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.3);
    outline: none;
  }
  
  #floatingPassword:active {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 15px rgba(0, 0, 0, 0.2);
  }
  
   /* Gradient background, padding, and border radius for the h6 element */
   #warning-message {
    background: linear-gradient(45deg, #eed366, #f5b14c);
    border-radius: 8px;
    padding:10px 10px;
    display: inline-block; /* To fit the content */
    animation: fadeIn 1s ease-out, slideIn 1s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#success-message {
    background: linear-gradient(45deg, #178f5b, #21ab44);
    border-radius: 8px;
    padding:10px 10px;
    display: inline-block; /* To fit the content */
    animation: fadeIn 1s ease-out, slideIn 1s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;

}

#error-message {
    background: linear-gradient(45deg, #c44e4e, #c31111); /* Gradient from bright red to darker red */
    border-radius: 8px;
    padding:10px 10px;
    display: inline-block; /* To fit the content */
    animation: fadeIn 1s ease-out, slideIn 1s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: center;
}

#caps-message {
    background: linear-gradient(45deg, #336e84, #0777a0);
    border-radius: 8px;
    padding:10px 10px;
    display: inline-block; /* To fit the content */
    animation: fadeIn 0.2s ease-out, slideIn 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: center;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0);
    }
}



  .buttonlogged {
    max-width: auto;
    background: linear-gradient(135deg, #56758d, #27353f);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    margin: 8px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
  }
  
  .buttonlogged:hover {
    background: linear-gradient(135deg, #2e4e64, #1e2a33);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  .buttonlogged:active {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 2px 15px rgba(0, 0, 0, 0.2);
  }
  

  @media screen and (max-width: 991px) {
    #fullscreen .container .signbox .imgdiv {
      width: 350px;
      height: 100%;
    }
  }

  @media screen and (max-width: 767px) {
    #fullscreen .container .signbox .imgdiv {
      display: none;
    }
  }

  @media screen and (max-width: 590px) {
    #fullscreen .container {
      width: 470px;
    }
  }

  @media screen and (max-width: 450px) {
    #fullscreen .container {
      width: 390px;
    }
  }

  @media screen and (max-width: 390px) {
    #fullscreen .container {
      width: 350px;
    }
  }

  @media screen and (max-width: 370px) {
    #fullscreen .container {
      width: 340px;
    }
  }

  .loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }