.user-suite-profile-form {
	max-width: 700px;
	margin: 0 auto;
}

.user-suite-profile-form button[type="submit"] {
	border-radius: 2rem;
}

.user-suite-profile-form fieldset {
	margin-bottom: 1.5rem;
}

.user-suite-profile-form legend {
	border-bottom: 1px solid #ddd;
	font-weight: 700;
	margin-bottom: 1rem;
	padding-bottom: .2rem;
}

.user-suite-profile-form label {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.user-suite-profile-form .form-control {
	border: none;
	display: flex;
	flex-direction: column;
	margin-bottom: 1.5rem;
	padding: 0rem;
}

.user-suite-profile-form input[type="text"],
.user-suite-profile-form input[type="email"],
.user-suite-profile-form input[type="password"] {
	border: 1px solid #ccc;
	border-radius: .25rem;
	font-size: 1rem;
	padding: 0.6rem;
	width: 100%;
}

.user-suite-profile-form .description {
	font-size: .9rem;
	margin-top: .25rem;
}


.user-suite-notice {
	align-items: flex-start;
	border-radius: 0.5rem;
	display: flex;
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
}

.user-suite-notice ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.user-suite-notice li {
	margin-bottom: 0.25rem;
}

.user-suite-success {
	background-color: #e6f9ed;
	border: 1px solid #2ecc71;
	color: #2e7d32;
}

.user-suite-error {
	background-color: #ffeaea;
	border: 1px solid #e74c3c;
	color: #c0392b;
}

.user-suite-success::before,
.user-suite-error::before {
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: inline-block;
	flex-shrink: 0;
	height: 1.25rem;
	margin-right: 0.75rem;
	width: 1.25rem;
}

.user-suite-success::before {
	background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%2327ae60' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12l2 2 4-4m5 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

.user-suite-error::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23c0392b' viewBox='0 0 24 24'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E");
}

.user-suite-pw-req {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.user-suite .has-toggle {
	position: relative;
}

.user-suite .has-toggle input[type="password"],
.user-suite .has-toggle input[type="text"] {
	padding-right: 2.5rem;
}

.user-suite .has-toggle .toggle-btn {
	background: none;
	border: none;
	cursor: pointer;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 0.75rem;
	top: 70%;
	transform: translateY(-50%);
}

.user-suite .has-toggle .toggle-btn:focus {
	color: #000;
	outline: none;
}

.toggle-btn .icon-eye,
.toggle-btn .icon-eye-off {
	width: 1rem;
	height: 1rem;
	vertical-align: middle;
}

.icon-wrap {
	position: relative;
	display: inline-block;
}

.icon-eye-off {
	display: none;
}

.hidden {
	display: none;
}

.form-control.has-toggle.fade:not(.show) {
	opacity: 0;
	visibility: hidden;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* Fade transition */
.fade {
	opacity: 0;
	visibility: hidden;
	height: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.fade.show {
	opacity: 1;
	visibility: visible;
	height: auto;
	margin: 1rem 0;
	padding: 1rem 0;
	overflow: visible;
}