/* *******************************************************************
  ==== ACCOUNT ====
******************************************************************* */

/* ===================================================================
  BASE
=================================================================== */

/* Area: Notices & Actions & Forms */
.wg-myaccount-notices,
.wg-myaccount-actions,
.wg-myaccount-messages,
.wg-myaccount-forms {
	padding: 6px 0;
	width: 100%;
}

@media (min-width: 1200px) {
	.wg-myaccount-notices,
	.wg-myaccount-actions,
	.wg-myaccount-messages,
	.wg-myaccount-forms {
		padding: 12px 16px;
	}
}

/* Area: Form */
.wg-myaccount-notices .wg-myaccount-content,
.wg-myaccount-forms .wg-myaccount-content {
	/* background-color: #fff; */
}

/* Area: Content */
.wg-myaccount-content {
	align-items: center;
	border-bottom: 2px dotted #007bff;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	padding: 6px 0;
	width: 100%;
}

.wg-myaccount-forms .wg-myaccount-content {
	border-bottom: none;
}

@media (min-width: 1200px) {
	.wg-myaccount-content {
		flex-direction: row;
		padding: 6px 10px;
	}
}

/* Area: Messages */
.wg-myaccount-message,
.wg-myaccount-message-header,
.wg-myaccount-message-body,
.wg-message-p {
	width: 100%;
}

.wg-myaccount-message > * {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wg-myaccount-link {
	color: #007bff;
  text-decoration: underline;
}

.wg-message-p {
	text-align: center;
}


/* Area: Forms */
.wg-myaccount-forms {
	flex-direction: column;
}

/* Form - Base */
.wg-myaccount-form-wrapper,
.wg-myaccount-form,
.wg-myaccount-form-row,
.wg-myaccount-form-row-remember,
.wg-myaccount-form-row-submit {
	max-width: 100% !important;
	width: 100% !important;
}

.wg-myaccount-form {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	padding: 0 6px;
}

/* Form - Row */

.wg-myaccount-form-row {
	margin: 5px 0;
}

.wg-myaccount-form-row:first-of-type {
	margin-top: 0;
}

.wg-myaccount-form-row:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 1200px) {
	.wg-myaccount-form-row,
	.wg-myaccount-form-row-remember,
	.wg-myaccount-form-row-submit {
		max-width: 400px !important;
		width: 400px !important;
	}
}

/* Form - Row - Input */
.wg-myaccount-form-row input {
	border: 2px solid #007bff !important;
	color: #2c2c2c !important;
	font-family: "Montserrat", Sans-serif !important;
	font-size: 1rem !important;
	transition: all 0.3s !important;
	width: 100%;
}

.wg-myaccount-form-row input:focus {
	border-color: #ff6f00 !important;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1) !important;
	outline: none !important;
}

.wg-myaccount-form-row input::placeholder {
	color: #2c2c2c !important;
	opacity: 0.6 !important;
}

/* Form - Row - Password */
.wg-myaccount-form-row button:hover {
	background-color: #e65f00 !important;
	border: 2px solid transparent !important;
	color: #fff !important;
}
.wg-myaccount-form-row button:focus {
	background-color: #e65f00 !important;
	border: 2px solid transparent !important;
	color: #fff !important;
}

/* Form - Row - Remember */
.wg-myaccount-form-row-remember {
	margin: 5px 0;
}

.wg-myaccount-form-row-remember label {
	align-items: center;
	display: flex;
	font-size: 0.95rem;
	gap: 1rem;
	justify-content: space-between;
	padding: 0 6px;
	width: 100%;
}

.wg-myaccount-form-row-remember label span {
	flex: 1;
}

/* Form - Row - Submit */
.wg-myaccount-form-row-submit {
	margin: 5px 0;
	padding: 6px 0;
}

.wg-myaccount-form-row-submit .wg-btn {
	max-width: 100% !important;
	width: 100% !important;
}

/* Form - Register - Password */
.wg-myaccount-register-p {
	background-color: #007bff38;
	border-left: 4px solid #007bff;
	border-radius: 4px;
	color: #555;
	font-size: 0.85rem;
  font-style: oblique;
	margin: 10px 0;
	padding: 10px 12px;
}

/* Form - Checkbox */
input[type="checkbox"].wg-myaccount-checkbox {
	border: 2px solid #ff6f00;
	border-radius: 4px;
	display: inline-block;
	height: 1rem;
	transition: all 0.2s ease;
	vertical-align: middle;
	width: 1rem;
}

input[type="checkbox"].wg-myaccount-checkbox:hover {
	border-color: #e65f00 !important;
}

input[type="checkbox"].wg-myaccount-checkbox:checked {
	background-color: #cc550056;
	border-color: #cc5500;
	box-shadow: inset 0 0 0 3px #fff;
}

input[type="checkbox"].wg-myaccount-checkbox:focus-visible {
	outline: 2px solid #e65f00;
	outline-offset: 3px;
}

input[type="checkbox"].wg-myaccount-checkbox:focus {
	outline: 2px solid #e65f00;
	outline-offset: 3px;
}

/* Title */
.wg-myaccount-title {
	color: #ff6f00;
}