/*
 * additional.css
 * privacy.css の .entry-btn は pointer-events: none が設定されているため、
 * <button> 要素使用時に disabled 属性で状態管理できるよう上書きする
 */

button.entry-btn {
	border: none;
	cursor: pointer;
	pointer-events: auto;
	transition: background-color 0.3s;
}

button.entry-btn:disabled {
	background-color: #ccc;
	cursor: default;
	pointer-events: none;
}

button.entry-btn:not(:disabled) {
	background-color: #cf4434;
}
