body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    background-color: #e8f4f8; /* Light background for the entire site */
    line-height: 1.6;
    font-family: 'Roboto', -apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}
header {
    background-color: #ffffff; /* White background */
    border-bottom: 1px solid #d9d9d9; /* Light gray bottom border */
    align-items: center;
   
}
header nav a:hover {
    text-decoration: underline; /* Underline on hover */
}

header nav {
    display: flex;
    gap: 20px; /* Spacing between links */
}

header nav a {
    color: #007078; /* Teal for links */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline; /* Underline on hover */
}
/* Logo styles */
.login h1 a {
    background-image: url('/wp-content/uploads/2025/01/WPCLOGO.svg') !important; /* Replace with your logo */
    background-size: contain;
    width: auto;
}

.login form{
    max-width: 400px !important;
    margin: 5% auto !important;
    padding: 10px;
    background: #e8f4f8;
    border : none;
    font-size: 15px !important;
}

.login-form-container {
    max-width: 400px !important;
    margin: 5% auto !important;
    padding: 10px;
}

.login-form-container h1 {
    text-align: center;
    color: #007078; /* Dark teal */
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    color: #007078;
    font-weight: bold;
}
.login #nav a,
.login #backtoblog a {
	text-decoration: none;
	font-size: 17px;
	color: #50575e;
}

input[type="text"],
input[type="password"] 
.login form .input, .login input[type="password"], .login input[type="text"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d1d9df; /* Light gray border */
    border-radius: 0%;
    font-size: 15px;
    font-family: 'Roboto', -apple-system,BlinkMacSystemFont,"Segoe UI",Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
   
}
/* login-style.css */

/* Hero Section */
.hero {
    background-color: #007078; /* Teal background */
    color: #ffffff !important; /* White text */
    text-align: center;
    padding: 20px 10px; /* Padding for spacing */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow at the bottom */
}

button {
    width: 100%;
    padding: 10px;
    background-color: #004a59; /* Dark teal */
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
}

button:hover {
    background-color: #00687a; /* Slightly lighter teal */
}

.login-links {
    text-align: center;
    margin-top: 15px;
}

.login-links a {
    color: #004a59;
    text-decoration: none;
}
.login #wp-submit {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background-color: #007078 !important; /* Dark teal */
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0px;
}


