* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #e4e4e4;
  }

  .judul-register {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: 20px;
  }

  .form-register {
    width: 820px;
    background-color: white; 
  }

  .register-form {
    margin-left: 20px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 80;
  }

  .register-form span {
    color: #797979;
  }

  nav a {
    color: green;
    text-decoration: none;
  }

  .profile {
    font-weight: bold;
    margin-left: 20px;
  }

  form {
    margin-top: 10px;
    margin-left: 20px;
  }

  label {
    font-style: italic;
    font-size: 13px;
  }

  input {
    width: 300px;
    height: 30px;
    padding-left: 5px;
  }

  .login {
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
  }

  button {
    color: green;
    width: 100px;
    height: 30px;
    margin-left: 30px;
  }
  .button-login {
    color: green;
    margin-left: 10px;
  }

  .checkbox-container {
    display: flex;
    align-items: center; /* Tengah secara vertikal */
    gap: 10px; /* Jarak antara kotak centang dan teks */
    margin-bottom: 10px;
  }
  
  .checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .checkbox-text {
    font-style: normal;
  }

  .forgot-password {
    font-size: 13px;
    color: green;
  }