
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;  
    margin: 0;
    font-family: 'Jakarta Sans', sans-serif;
}

.login-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.login-text {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url("public/images/OIG.PNG");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-shadow: 4px 4px 4px #00000040;
    animation: slide 30s linear infinite;
  }
  

.login-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    align-items: center;
  }

  .login-text-content img {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  
  .login-text-content h2 {
    background-color: rgba(0, 0, 255, 0.25);
    border-radius: 20px;
    margin: 10px;
    font-size: 42px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    

  }
  
  .login-text-content span {
    background-color: rgba(0, 0, 255, 0.40);
    border-radius: 5px;
    font-size: 24px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    display: flex;

  }
  
  .login-form {  
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;    
    flex: 1;
}      

.login-form-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 70%;
  align-items: center;
}

.login-form h3 {
font-family: Jakarta Sans;
font-size: 19px;
font-weight: 700;
line-height: 24px;
letter-spacing: 0em;
text-align: center;


}


.login-form img {
  display: flex;
  align-self: center;
  text-align: center;
}

.login-form a {
  float: right;
  align-self: flex-end;
  text-decoration: none;
  color: #2b2b2b;
  margin-bottom: 20px;
}

.login-form a:hover {
  color: #0B9DCA;
}


form input {
width: 100%;
margin-bottom: 10px;
padding: 10px;
box-sizing: border-box;
border: solid 1px #cccccc;
border-radius: 5px;
}

form button {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding: 15px 0;
  box-sizing: border-box;
  background: linear-gradient(90deg, #0B9DCA 0%, #00B7BC 100%);
  border-radius: 5px;
  align-self: stretch;
  color: #fff;
  cursor: pointer;
  border: none;
}
form button:hover {
  background: linear-gradient(180deg, #0B9DCA 0%, #00B7BC 100%);
  
}

.login-form-divider {
  width: 100%;
  columns:#626476 ;
  border-bottom: solid  1px #626476;
  align-items: stretch;
}
.login-form-divider div {
  position: relative;
  width: 150px;
  top: 10px;
  left: calc(50% - 75px);
  text-align: center;
  background-color: white;
}

.login-form-google {
margin-top: 30px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 50px;

}

#google-container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

#google-icon{
  width: 50px;
  height: 50px;
  background-image: url("public\images\div#google-icon.png");

  
}

#google-sign-in {
  align-items: center;
  text-align: center;

}

.login-form-subscribe{
  align-items: center;
  margin-top: 20px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;

}
.login-form-subscribe a {
  color: #0B9DCA;
  transition: color 0.05s ease-in-out;
}

.login-form-subscribe a:hover {
  color: #046063;
}
.login-form-content form{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@keyframes slide {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
  }


