* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Fredoka', sans-serif;
}

.register-wrapper {
  display: flex;
  min-height: calc(100vh - 60px); /* Ganti ini */
  margin-top: 60px;
  background: linear-gradient(to bottom right, #FBEFFF, #FFFDF8);
}

.register-left {
  flex: 1;
  background-color: #FFECD2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
}

.register-left img {
  max-width: 100%;
  height: auto;
}

.register-left .caption {
  margin-top: 10px;
  font-size: 1.1rem;
  text-align: center;
  color: #9b6d5b;
}

.register-right {
  flex: 1;
  background: #ffffff;
  padding: 30px 40px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 20px 20px 0;
}

.register-title {
  font-size: 30px;
  font-weight: bold;
  color: #6D4C5B;
  margin-bottom: 30px;
  text-align: center;
}
  
  .input-group-text {
    background-color: #EAD6F4;
    border: none;
    color: #6D4C5B;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.form-control:focus {
    border-color: #A672C2;
    box-shadow: 0 0 0 0.2rem rgba(166, 114, 194, 0.25);
}

  .form-label {
    font-size: 0.78rem;
    margin-bottom: 3px;
  }
  
  .mb-3 {
    margin-bottom: 5px !important;
  }
  
  .btn-primary {
  background-color: #6D4C5B;
  border: none;
  padding: 10px;                 /* Sama persis dengan login */
  font-weight: bold;
  font-size: 1rem;               /* Biar besar dan enak dilihat */
  border-radius: 6px;
}

  
  .footer-text {
    font-size: 0.7rem;
  }
  
  
/* Bagian navigasi */
.all-navbar nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #6D4C5B;
    padding: 10px 0;
}

.container-fluid {
    background-color: #6D4C5B; /* Sesuaikan dengan warna navbar yang diinginkan */
}

.collapse.navbar-collapse {
    float: right;
}

.logo {
    width: 45px;
    display: block;
    margin: 0 auto; /* Menengahkan logo di dalam navigasi bar */
    float: left;
}

.menu_nav {
    font-weight: bold;
    color: #fff;
}

.menu_nav:hover {
    color: white !important;
}

.menu_nav.active {
    padding: 10px 15px; /* Atur padding sesuai keinginan */
    background-color: #E5E5E5; /* Ganti dengan warna latar belakang yang diinginkan */
    border-radius: 8px; /* Membuat border lebih halus dengan border-radius */
    transition: background-color 0.3s ease; /* Efek transisi saat berinteraksi */
    color: black !important; /* Warna teks ketika aktif */
}

.btn-primary:hover {
    background-color: #F28C38;
    transform: translateY(-2px);
}


/* Tambahan untuk penyesuaian input */
.form-control {
  background-color: white;
  border-color: #ccc;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 12px;     /* Tambahan: sesuaikan dengan login */
  font-size: 0.95rem;     /* Sesuaikan ukuran teks input */
  margin-bottom: 10px;
}

.invalid-feedback {
    color: #dc3545;
}

/* Tambahan untuk penyesuaian checkbox */
.form-check-input {
    background-color: white;
}

.input-group {
    width: 100%;
  }



