body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #E7E3E0;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width:60%;
    border-radius:2rem;
    margin-top: 3rem;
  }

  .split {
    flex: 1;
    overflow: hidden;
    height: 80%; 
  }

  .left {
      background-color: #20253a;
      display: flex;
      flex-direction: column;
  }

  .right {
    background-color: #fff;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .login-form {
    padding: 20px;
    border-radius: 8px;
    width:80%
  }

  .form-group {
    margin-bottom: 15px;
  }

  label {
    display: block;
    margin-bottom: 5px;
  }

  input[type="email"],
  input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  button {
    width: calc(100% - 20px);
    padding: 10px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #e600a0;
    transition: background-color 0.3s ease;
  }
  
 

  .svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .svg-container img {
    max-width: 100%;
    max-height: 100%;
  }

  .error-msg {
    position: fixed;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #de0a26;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
    text-align: center;
  }

  .success-msg {
    position: fixed;
    top: 20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #16C851 ;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
    text-align: center;
  }
  