body {
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
.left, .right {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100vh;
    transition: all 0.3s ease;
        }
        
.left {
    left: 0;
    background-color: #611A11;
        }
        
.right {
    right: 0;
    background-color: #FFFFFF;
        }
        
.login-container {
    position: relative;
    margin: 5vh auto;
    width: 90%;
    max-width: 1200px;
    min-height: 80vh;
    background: white;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
        }
        
.form-left, .form-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
        }
        
.form-left {
    background-color: #611A11;
    color: white;
        }
        
.form-right {
    background-color: #FFFFFF;
        }
        
.login-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
        }
        
.form-control {
    height: 50px;
    margin-bottom: 20px;
        }
        
.btn-login {
    background-color: #611A11;
    color: white;
    height: 50px;
    font-weight: 600;
        }
        
.btn-login:hover {
    background-color: #4a140d;
    color: white;
        }
        
@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
        min-height: auto;
        }
            
    .form-left, .form-right {
        padding: 30px;
        }
            
    .left, .right {
        width: 100%;
        height: 50vh;
        }
            
    .left {
        z-index: -1;
        }
            
    .right {
        top: 50vh;
        z-index: -1;
            }
    }
        
@media (max-width: 576px) {
  .login-container {
        width: 95%;
        margin: 5vh auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

  .form-left, .form-right {
      width: 100%;
      padding: 20px;
      text-align: center;
    }
}