html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
#article{
    padding: 0 !important;
    margin: 0 !important;
}
  
  .login-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%; /* Add this line */
    position: relative;
    overflow: hidden;
  }

  .login-layout > .login-col-25{
    width: 25%;
    align-items: center;
    justify-content: center;
  }
  
  .login-layout > .login-col-10{
    width: 10%;
    align-items: center;
  }  
  
  .login-layout > .login-col-30{
    width: 30%;
    align-items: center;
  }
  
  .login-layout > .login-col-35{
    width: 35%;
    align-items: center;
  }
  
  .login-layout > .login-black-bg{
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
  }

  .login-layout > .user-info-container>.form-container{
    width: 100%;
  }

  .login-layout > .user-info-container>.form-container>.my-form-group {
    width: 100%;
}

.login-layout > .login-black-bg > #login-equation{
    font-family: 'Space Grotesk';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    border-radius: 28px;
    border: 2px solid rgba(9, 9, 9, 1);
    width: fit-content;
    align-self: center;
    background-color: white;
    z-index: 10;
    padding: 6px 12px;
    margin-bottom: 50px;
}

.form-container > .login-form-title{
    font-weight: 700;
    font-size: 48px;
    margin-top: 50px;
}

#dot-1{
    position:absolute;
    left: 45%;
    top: 60%;
}

#dot-2{
    position: absolute;
    left: 47%;
    top: 50%;
}

#dot-3{
    position: absolute;
    right: 7%;
    top: 10%;
}

#dot-4{
    position: absolute;
    right: 2%;
    top: 20%;
}

#dot-5{
    position: absolute;
    right: 23%;
    bottom: 25%;
}

#dot-6{
    position: absolute;
    right: -5%;
    bottom: 50%;
}


@media only screen and (min-width: 960px){
    .login-layout > .login-col-25{
        width: 25%;
    }
    .login-layout > .login-col-30{
        width: 30%;
    }
}

@media only screen and (max-width: 960px) {
    .login-layout > .login-col-25{
        width: 45%;
    }
    .login-layout > .login-col-30{
        width: 10%;
    } 

    #dot-5{
        position: absolute;
        right: 23%;
        bottom: 15%;
    }

    #dot-1{
        position:absolute;
        left: 55%;
        top: 60%;
    }
    
    #dot-2{
        position: absolute;
        left: 55%;
        top: 50%;
    }
    
    #dot-3{
        position: absolute;
        left: 50%;
        top: 10%;
    }
}


/* Modern Language Selector Styling */
.language-selector {
    position: relative;
    font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
}

    .language-selector select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-color: transparent;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 8px 36px 8px 12px;
        font-size: 14px;
        font-weight: 500;
        color: #334155;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        min-width: 100px;
        outline: none;
    }

    .language-selector::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath fill='%23334155' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        pointer-events: none;
    }

    .language-selector select:hover {
        border-color: #cbd5e1;
        background-color: #f8fafc;
    }

    .language-selector select:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    }


@media only screen and (max-width: 767px) {
      
  .login-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%; /* Add this line */
    position: relative;
  }

  .login-layout > .login-col-10{
    display: none;
  }

  .login-layout > .login-col-25{
    width: 100%;
    padding: 10%;
  }
    .login-layout > .login-col-30{
        display: none;
    } 
    .login-layout > .login-col-35{
        width: 100%;
    }

  .login-layout > .login-black-bg{
    padding-top: 50px;
  }

  #dot-1{
    z-index: -1;
    left: 0%;
  }
  
  #dot-2{
    z-index: -1;
  }
  
  #dot-3{
    z-index: -1;
  }
  
  #dot-4{
    left: 2%;
    z-index: -1;
  }
  
  #dot-5{
    z-index: -1;
    left: 2%;
  }

  #dot-6{
    z-index: -1;
  }
}