    .body {
      background-color: #2c3e50; /* Warna latar belakang untuk seluruh halaman */
    }
    .footer {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background: linear-gradient(45deg, #2c3e50, #2c3e50, #2c3e50); /* Warna latar belakang footer dengan gradasi */
        color: white; /* Warna teks */
        text-align: center; /* Teks berada di tengah */
        padding: 10px 0; /* Padding atas dan bawah 10px, padding kiri dan kanan 0 */
    }
    .card-custom {
      background-color: #2c3e50;
      border: 5px solid #ffffff;
      color: white;
    }
    .content {
      padding: 20px;
      border-radius: 5px;
    }
    .submit-button {
      margin-top: 20px; /* Membuat jarak dari atas untuk tombol submit */
    }
    .title-small-gap {
      margin-bottom: 0.1rem; /* Atur jarak kecil di sini */
    }
    .header {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
    .header .logo {
      height: 50px; /* Atur tinggi logo sesuai kebutuhan */
      background-color: white;
      /*border: 1px solid #ccc;*/
      border-radius: 10px;
      position: absolute;
      right: 0;
    }
    .gradient-text {
        font-size: 2em;
        font-weight: bold;
        text-align: center;
        margin-bottom: 0;
        color: #fff;
        background: linear-gradient(45deg, #ff6b6b, #f7e600, #48c6ef);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }