/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
  }
  
  /* Container Layout */
  .login-container {
    display: flex;
    height: 100vh;
  }
  
  /* Left Side (Login Form) */
  .login-left {
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
  }
  
  .brand-logo {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 40px;
  }
  
  .login-box {
    max-width: 400px;
    margin: auto;
  }
  
  .welcome-text {
    font-size: 28px;
    font-weight: bold;
    color: #B25F2B;
  }
  
  .subtitle {
    color: #666;
    margin-bottom: 20px;
  }
  
  .form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
  }
  
  .login-btn {
    background: #B25F2B;
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 16px;
  }
  
  .contact-link {
    text-align: center;
    margin-top: 15px;
  }
  
  .contact-link a {
    color: #B25F2B;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* Right Side (Background Image) */
  .login-right {
    width: 50%;
    background: url('../images/bg-image.png') no-repeat center center;
    background-size: cover;
    position: relative;
  }
  
  .background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

  @media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }
    .login-left, .login-right {
        width: 100%;
        height: auto;
    }
    .login-right {
        min-height: 200px;
    }
    .brand-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    .login-box {
        margin: 20px;
    }
}