@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
body{
  background: #05615C;
  /* background: #E9E0D1; */
  background-image: url('../../images/bg.png');
  /* background-image: url('../../images/bgnew.jpg'); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
::selection{
  background: 1C2234;
}
.container{
  max-width: 500px;
  padding: 0 10px;
  margin: 3rem auto;
}
.wrapper{
  width: 100%;
  background-image: url('../../images/login.jpg');
  height: 32rem;
  border-radius: 12px;
  box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
.wrapper .title{
  height: 90px;
  background: #1C2234;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper form{
  padding: 30px 25px 25px 25px;
}
.wrapper form .row{
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}
.wrapper form .row input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus{
  border-color: #1C2234;
  box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}
form .row input::placeholder{
  color: #999;
}
.wrapper form .row i{
  position: absolute;
  width: 47px;
  height: 100%;
  color: #fff;
  font-size: 18px;
  background: #1C2234;
  border: 1px solid #1C2234;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper form .pass{
  margin: -8px 0 20px 0;
}
.wrapper form .pass a{
  color: #1C2234;
  font-size: 17px;
  text-decoration: none;
}
.wrapper form .pass a:hover{
  text-decoration: underline;
}
.wrapper form .button input{
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: #1C2234;
  border: 1px solid #1C2234;
  cursor: pointer;
}
form .button input:hover{
  background: #1C2234;
}
.wrapper form .signup-link{
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
}
.wrapper form .signup-link a{
  color: #1C2234;
  text-decoration: none;
}
form .signup-link a:hover{
  text-decoration: underline;
}
.signInbtn{
    background:#05615C; 
    /* background:#D0B084;  */
    color:white;
     border:none;
     /* border:2px solid #D0B084; */
     border:2px solid #05615C;
}
.signInbtn:hover{
    background: none !important;
    border:2px solid #05615c;
    /* border:2px solid #D0B084; */
    color: black;
    cursor: pointer;
}

.powered-by-section {
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    position: relative;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 12px 12px;
}

.powered-by-section p {
    font-size: 14px;
    /* color: #8F8D8F; */
    color: #161B2A;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logos-container {
    max-width: 480px;
    margin: 10px auto;
    padding: 0 5px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-self: start;
    width: 48%;
}

.logo-section img {
    max-width: 140px;
    height: auto;
    /* margin-top: 10px; */
}

.logo-section p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    text-align: center;
}

