


#wpmem_login {
	margin-top: 20px;
	margin-inline: auto;
}

#wpmem_login form {
	margin: 0;
}

#wpmem_login input[type="text"],
#wpmem_login input[type="password"] {
	width: 100%;
	padding: 12px;
	margin: 8px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
}

#wpmem_login input[type="submit"] {
	width: 100%;
	padding: 12px;
	background: #0073e6;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 10px;
}

#wpmem_login input[type="submit"]:hover {
	background: #005bb5;
}

#wpmem_login .link-text {
	text-align: center;
	margin-top: 15px;
}

#wpmem_login .link-text a {
	color: #0073e6;
	text-decoration: none;
}

#wpmem_login .link-text a:hover {
	text-decoration: underline;
}


/* WP-Members Form Styling */
#wpmem_reg {
	margin-top: 20px;
	margin-inline: auto;
}

#wpmem_reg form {
	margin: 0;
}

#wpmem_reg input[type="text"],
#wpmem_reg input[type="email"],
#wpmem_reg input[type="password"] {
	width: 100%;
	padding: 12px;
	margin: 8px 0;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
}

#wpmem_reg input[type="submit"] {
	width: 100%;
	padding: 12px;
	background: #0073e6;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 10px;
}

#wpmem_reg input[type="submit"]:hover {
	background: #005bb5;
}


/* Success Messages */
.wpmem_msg.success {
	background: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}

/* Error Messages */
.wpmem_msg.error {
	background: #f8d7da;
	color: #721c24;
	border-left: 4px solid #dc3545;
}

/* Info Messages */
.wpmem_msg.info {
	background: #d1ecf1;
	color: #0c5460;
	border-left: 4px solid #17a2b8;
}

/* Warning Messages */
.wpmem_msg.warning {
	background: #fff3cd;
	color: #856404;
	border-left: 4px solid #ffc107;
}

/* General Message Styling */
.wpmem_msg p {
	margin: 0;
	padding: 0;
}

/* Message Icons */
.wpmem_msg.success::before {
	content: "✓ ";
	font-weight: bold;
}

.wpmem_msg.error::before {
	content: "✗ ";
	font-weight: bold;
}

.wpmem_msg.info::before {
	content: "ℹ ";
	font-weight: bold;
}

.wpmem_msg.warning::before {
	content: "⚠ ";
	font-weight: bold;
}

/* Animation for messages */
.wpmem_msg {
	animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}



.welcome-message {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}
.link-text {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.link-text a {
    color: #0073e6;
    text-decoration: none;
    font-size: 14px;
}
.link-text a:hover {
    text-decoration: underline;
}
.footer-text {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.footer-text p {
    margin: 0;
    font-size: 12px;
    color: #999;
}  

body { 
    background: #f7f7f7; 
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
}
.lang-switch button {
    padding: 8px 16px;
    border: 1px solid #0073e6;
    background: #fff;
    color: #0073e6;
    cursor: pointer;
    font-size: 14px;
}
.lang-switch button:first-child {
    border-right: 0;
}
.lang-switch button:hover,
.lang-switch button.active {
    background: #0073e6;
    color: #fff;
}




.button_div {
    text-align: left !important;
}
.login-container {
    max-width: 400px;
    background: #fff;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: relative;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
legend {
    text-align: center;
}
.wpmem_msg {
    margin: 20px auto;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    border: none;
    position: relative;
}
.register-container {
    max-width: 500px;
    background: #fff;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    position: relative;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.register-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
    font-weight: bold;
}     