.rtl .icon-rtl {
				transform: rotate(180deg);
			}

			.tap-toast-overlay {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				display: flex;
				justify-content: center;
				align-items: flex-start;
				padding-top: 60px;
				z-index: 10000;
			}

			.tap-toast {
				background-color: #000000;
				opacity: 0.85;
				height: 48px;
				padding: 16px;
				border-radius: 8px;
				opacity: 0;
				transition: opacity 0.3s ease;
				display: flex;
				align-items: center;
				z-index: 10000;
			}

			.tap-toast.show {
				opacity: 1;
			}

			.tap-toast-tips {
				font-size: 16px;
				color: #fff;
				padding-left: 8px;
			}

			.button-login-daftar {
                      display: grid;
                      grid-template-columns: repeat(2, 1fr);
                      font-weight: 700;
                  }
                  .button-login-daftar a {
                      text-align: center;
                  }
                  .login,
                  .register {
                      color: #000000;
                      padding: 15px 10px;
                      font-size: 23px;
                  }
                  .login,
                  .login-button {
                      background: linear-gradient(to bottom, #03a598 0%, #03776d 50%, #014e48 100%);
                      border: 2px solid #ffffff;
                  }
                  .register,
                  .register-button {
                      background: linear-gradient(to bottom, #03a598 0%, #03776d 50%, #014e48 100%);
                      border: 2px solid #ffffff;
                  }