.post-password-form.post-password-form-network {
	max-width: 400px;
	margin: 0 auto;
	padding: 0;
	border-radius: 0;
}

.post-password-form.post-password-form-network > div {
	padding: 20px;
	border: 1px solid #d5d5d5;
}

.post-password-form.post-password-form-network h4 {
	background: #17436b;
	color: #fff;
	padding: 20px;
	margin-bottom: 0;
}

.post-password-form-network input[type=text],
.post-password-form-network input[type=password] {
	width: 100%;
	display: block;
	height: 40px;
	padding: 10px;
}

.post-password-form-network input[type=submit] {
	border: none;
	background: green;
	color: #fff;
	padding: 10px;
	text-transform: uppercase;
}

.post-password-form-network input[type=submit]:disabled {
	background: #d9d9d9;
	color: #000;
	cursor: not-allowed;
}

.post-password-form-network .attempt-notice {
	margin-bottom: 16px;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-weight: 600;
	line-height: 1.4;
}

.post-password-form-network .attempt-notice-warning {
	background: #fff4d6;
	border-color: #f2c76e;
	color: #734b00;
}

.post-password-form-network .attempt-notice-error {
	background: #f8d7da;
	border-color: #f1aeb5;
	color: #842029;
}

.cc-message {
	background: #f8d7da;
	color: #721c24;
	padding: 10px;
	margin: 0 !important;
	border: 1px solid #f5c6cb;
	border-radius: 5px;
}

.cc-message a {
	color: #721c24 !important;
	text-decoration: underline;
	cursor: pointer;
}

.submit-wrap {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.loader {
	visibility: hidden;
	opacity: 0;
	margin-left: 10px;
	width: 24px;
	height: 24px;
	border: 5px solid #fff;
	border-bottom-color: #ff3d00;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
}

.loader.active {
	visibility: visible;
	opacity: 1;
	animation: dc-private-page-rotation 1s linear infinite;
}

@keyframes dc-private-page-rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
