.my-account-wrapper .container{
	width: 100%;
	max-width: 499px;
	margin: 0 auto;
}
form input[readonly],
form input[disabled] {
	cursor: not-allowed;
	background-color: #eee;
	color: #666;
}
.auth-content{
	display: flex;
	flex-wrap: wrap;
}
.my-account-wrapper label{
	font-size: 16px;
	display: block;
}
.my-account-wrapper h2{
	margin-bottom: 20px;
	text-align: center;
}
.my-account-wrapper form{
	background: #f7f7f7;
    padding: 30px;
}
.my-account-wrapper input,
.my-account-wrapper select{
	padding: 8px 15px;
	width: 100%;
	display: block;
	max-width: 100%;
	border: 1px solid #666;
}
.auth-content .col{
	width: 45%;
	padding: 20px;
}
.auth-content h2{
	margin-bottom: 15px;
}
.auth-content form{
	border: 1px solid #888;
	padding: 25px;
	}
 .my-account-wrapper{
	margin-bottom: 50px;
 }
.my-account-container {
	display: flex;
	gap: 30px;
	background: #f7f7f7;
	margin-bottom: 90px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	overflow: hidden;
}
.account-sidebar {
	flex: 0 0 280px;
	background: #2c3e50;
	color: #fff;
	padding: 30px 0;
}
span.option{
	margin-top: 20%;
	color: #666;
}
.user-info {
	padding: 0 25px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	margin-bottom: 20px;
}
.user-info h3 {
	color: #fff;
	margin: 0;
	font-size: 18px;
	font-weight: 400;
}
.account-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.account-navigation li {
	margin: 0;
}
.account-navigation a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px 25px;
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}
.account-navigation a:hover {
	background: rgba(255,255,255,0.1);
	color: #fff;
}
.account-navigation li.active a {
	background: #3498db;
	color: #fff;
	border-left: 4px solid #2980b9;
}
.account-navigation .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}
.account-content {
	flex: 1;
	padding: 50px 40px 50px 20px;
}
.account-content h2 {
	margin-top: 0;
	color: #2c3e50;
	border-bottom: 2px solid #3498db;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.profile-table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background: #fff;
}
.profile-table tr {
	border-bottom: 1px solid #e0e0e0;
}
.profile-table th,
.profile-table td {
	padding: 18px;
	text-align: left;
}
.profile-table th {
	font-weight: 600;
	color: #555;
	width: 200px;
	background: #f8f9fa;
}
.profile-table td {
	color: #333;
}
.success-message {
	background: #d4edda;
	color: #155724;
	padding: 15px 20px;
	border-radius: 5px;
	margin-bottom: 25px;
	border-left: 4px solid #28a745;
}
.error-message {
	background: #f8d7da;
	color: #721c24;
	padding: 15px 20px;
	border-radius: 5px;
	margin-bottom: 25px;
	border-left: 4px solid #dc3545;
}
.form-message {
	padding: 15px 20px;
	border-radius: 5px;
	margin-bottom: 25px;
	border-left: 4px solid #999;
}
.form-message.success {
	background: #d4edda;
	color: #155724;
	border-left-color: #28a745;
}
.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border-left-color: #dc3545;
}
.form-message.loading {
	background: #d1ecf1;
	color: #0c5460;
	border-left-color: #17a2b8;
}
form {
	margin-bottom: 25px;
}
form label {
	display: block;
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 600;
	color: #000;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}
form input:focus,
form select:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}
.button-primary {
	background: #3498db;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background 0.3s ease;
}
.button-primary:hover {
	background: #2980b9;
}
.button-secondary {
	background: #95a5a6;
	color: #fff;
	padding: 10px 25px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s ease;
}
.button-secondary:hover {
	background: #7f8c8d;
}
.password-section {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #e0e0e0;
}
.dashboard-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.dashboard-card {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 8px;
	border-left: 4px solid #3498db;
}
.dashboard-card h3 {
	margin-top: 0;
	color: #2c3e50;
	font-size: 16px;
}
.dashboard-card p {
	color: #666;
	margin-bottom: 15px;
}
.field-error,
.required{
	color: #d00000;
	font-size: 13px;
}
.password-update{
    border: 1px solid #ddd;
    padding: 0 20px 20px 20px;
    margin-top: 35px;
}
.password-update h3{
	font-size: 20px;
	margin: 00;
	display: inline;
	position: relative;
	top: -13px;
	background-color:#f7f7f7 ;
}