* {
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  flex-direction: row-reverse;
}
.wrapper .left {
  width: 37%;
  height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .left .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper .right {
  background-color: rgb(250, 250, 250);
  width: 63%;
  height: 100vh;
  display: flex;
  justify-content: space-between; /* Adjusts space between items */
  align-items: center;
  flex-direction: column;
}

.wrapper .right .cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 2em;
}

.wrapper .right footer{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1.5em;
}

.wrapper .right h1 {
  font-size: 35px;
  font-weight: 500 !important;
}
.wrapper .right h3 {
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 5px;
  font-weight: 500 !important;
}


.wrapper .right footer .version,
.wrapper .right  footer .cp {
  margin-bottom: 0; /* Adjust as needed */
  color: #000000 !important;
  font-weight: 500 !important;
}



.wrapper .right form {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 60%;
}
.wrapper .right form input {
  min-width: 450px;
  height: 40px;
  margin-top: 1em;
  border: none;
  border-radius: 5px;
  max-width: 500px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  background-color: rgb(244, 244, 244);
}
.wrapper .right form a {
  margin-top: 1em;
  color: #b1cc47;
}
.wrapper .right form input[type=submit] {
  min-width: 470px;
  cursor: pointer;
  background-color: #c9e265;
  font-size: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.wrapper .right form input[type=submit]:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}/*# sourceMappingURL=login.css.map */

@media screen and (max-width : 800px){
  body, html, .wrapper{
    height: 100%;
  }
  .wrapper .left{
    display: none !important;
  }
  .wrapper .right{
    min-width: 100% !important;
    min-height: 100%;
    position: fixed;
    top: 0;
    overflow: hidden !important;
  }

  .wrapper .right form{
    width: 85% !important;
    min-width: 85% !important;
    max-width: 85% !important;
  }

  .wrapper .right form input{
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
  }
  .wrapper .right form input[type=submit]{
    padding-left: 20px !important;
    padding-right: 20px !important;
    min-width: 105% !important;
  }
  .wrapper .right h3{
    width: 90% !important;
    text-align: center !important;
  }
}