
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
  body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  /* Flexbox untuk row agar konten terpusat */
  .row {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Tinggi minimum penuh layar */
  }

  /* Kolom kiri dengan background gambar */
  .bg-left {
    background: url('https://servermysch4.my.id/admin/auth/Rectangle 4.webp');
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Style untuk content login */
  .content-login {
    margin: auto;
    text-align: center;
    max-width: 400px;
    padding: 20px;
  }

  /* Gambar konten kiri dengan latar belakang transparan */
  .content-gambar {
    margin: auto;
    width: 500px; /* Disesuaikan dengan form */
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 46px;
    border: 1px solid #fff;
    text-align:center;
  }

  /* Judul login */
  .content-login h2 {
    color: #000;
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
  }
  
  .content-gambar h3 {
    color: #fff;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
  }

  /* Teks instruksi login */
  .content-login span {
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #525252;
  }

  /* Gambar logo */
  .content-login img {
    max-width: 213px;
    margin-bottom: 20px;
  }

  /* Form input */
  .content-login input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #F0EDFF;
    background: #F0EDFF;
    color: #1C1C1C;
    border-radius: 16px;
    height: 52px;
    padding-left: 40px;
  }

  /* Button submit */
  .button-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #9181F4;
    border : none;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    transition: background 0.3s;
    height: 52px;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    width: 124px;
    place-self: center;
  }

  .button-submit:hover {
    background: #9181F4;
  }

  /* Link 'Lupa Password' */
  .text-small {
    font-size: 12px;
    color: #525252;
  }

  .text-right {
    text-align: right;
  }
  
  .floating{
      height: 75px;
      position: absolute;
        left: 50px;
        bottom: 100px;
  }
  
  .form-content{
      margin-top: 20px;
  }
  
  .form-content i{
        position: absolute;
        margin-left: 20px;
        margin-top: 20px;
  }
  
  .gambar-dashboard{
      width: 80%;
  }
  
  #passwordToggle, #confirmPasswordToggle{
      margin-left: -30px;
  }