.body .html {
    height: 100%;
    margin: 0;
}

.login-container {
    display: flex;
    height: 100vh; 
    width: 100vw; /* Full width of the viewport */
}
.left-section {
    background-color: #fdf4f2;
    position: relative; /* Added for absolute positioning of logo */
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    padding: 50px;
}


.left-section img.logo {
    max-width:150px; /* Adjust the size of the logo */
    margin-top: 2rem;
    margin-bottom: 3rem;
    background-color: #fff;
    border-radius: 10px;
}

.left-section img.main-image {
    max-width: 100%; /* Image takes the full width of its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
    box-shadow: 0 24px 24px rgba(0, 0, 0, 0.3);
}
.left-section p {
    font-size: 2.2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode';
    font-weight: 600;
    color: #000000;
    text-align: left; /* Center the text */
    margin-bottom: 2rem;
}
.right-section {
    position: relative;
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.right-section .form-section {
    width: 100%;
    /* max-width: 450px; */
    margin: 0 auto; /* Centering the form */
}

.right-section .form-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.fit-window-resize {
   align-items: center;
}

.logo-back-to-home-right {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px;
    cursor: pointer;
    display: none;
}

.logo-back-to-home-right img {
    max-width:150px; /* Adjust the size of the logo */
    margin-top: 2rem;
    margin-bottom: 3rem;
    background-color: #fff;
    border-radius: 10px;
}

@media (min-width: 768px), (orientation: landscape) {
    .logo-back-to-home-right {
        display: none;
    }
}

@media (max-width: 768px), (orientation: portrait) {

    .logo-back-to-home-right img {
        margin-top: 0rem;
    }

    .left-section {
      display: none;
    }

    .right-section {
        flex-basis: 100%;
    }

    .offset-md-3 {
        margin-left: 10%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 80%;
        margin-top: 40px;
    }

    .logo-back-to-home-right {
        display: block;
    }
}

@media (min-width: 768px) {
    .offset-md-3 {
        margin-left: 15%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 70%;
    }
}

@media (min-width: 1080px) {
    .offset-md-3 {
        margin-left: 25%;
    }
}

@media (min-width: 1080px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}




.loginTitle {
    font-size: 2.2rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode';
    font-weight: 600;
    color: #000000;
    text-align: left; /* Center the text */
    margin-bottom: 2rem;
}

.social-login button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.social-login button.google {
    background-color: #db4437;
    color: white;
}

.social-login button.facebook {
    background-color: #4267B2;
    color: white;
}

.divider {
    text-align: center;
    margin: 20px 0;
    line-height: 0;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: #fff;
    padding: 0 10px;
}

.email-login, .submit-button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-button {
    background-color: #FF5722;
    color: white;
    border: none;
}

.terms {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

.google-btn {
    background-color: #f5f5f5;
    color:white;
    border-radius: 25px;
    white-space: nowrap;
    border: #e6e6e6;
    border-style: solid;
}

.google-icon-wrapper {
    position: absolute;
    margin-top: 2px;
    margin-left: 0px;
    width: 40px;
    height: 40px;
    border-radius: 2px;
}

.google-icon {
    width: 35px;
    height: 35px;
}

.btn-text {
    font-style: bold;
    color: #000000;
    margin-top: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text-loading{
    color: #949494;
}

.google-btn:hover {
    background: #e6e6e6;
}
.google-btn:active {
    background: #ebebeb;
}

.box {
    border: 1px solid #dfdfdf;
    background-color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: center;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
  }

.footerLogin {
    /* position: absolute; */
    bottom: 0;
    /* left: 50%;
    transform: translateX(-50%); */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5px;
    box-sizing: border-box;
    color: #e8e8e8;
  }
  
.footerLogin a {
    text-decoration: none;
    margin-left: 10px;
    padding: 1px;
  }

  #logoBackToHome {
    cursor: pointer;
}



.dot {
    animation: blink 1s infinite;
  }
  
  .dot:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .dot:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  @keyframes blink {
    0% {opacity: 0;}
    50% {opacity: 1;}
    100% {opacity: 0;}
  }