* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-image: url("../assets/background-1-img.jpg")  ;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container-fluid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding: 0 !important;
  }
  
  .left-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    height: 100%;
    width: 60%;
    background: rgba(12, 12, 12, 0.199);
  }
  
  .logo-inicial img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .right-section {
    background: rgba(20, 20, 40, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    height: 100%;
    width: 40%;
  }
  
  .Logo {
    margin-bottom: 30px;
  }
  
  #loginForm {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .right-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .input-group {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
  }
  
  .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .btn-block {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #7b61ff, #a07cff);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn-block:hover {
    background: linear-gradient(45deg, #5e4dff, #846aff);
  }
  
  .divButtom {
    width: 100%;
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
    .no-gutters {
      flex-direction: column;
      width: 90%;
    }
  
    .left-section {
      height: 40%;
    }
  
    .right-section {
      height: 60%;
    }
  }
  