/* General Page Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212; /* Dark red background */
    color: #fff; /* Default text color is white */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Form Styling */
form {
    background-color: #fff; /* White background for the form */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    margin: 40px auto; /* Center form on the page */
}

input[type="text"], input[type="email"], input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #f5b81b; /* Bright yellow for the button */
    color: #000; /* Black text */
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #d9a414; /* Darker shade on hover */
}

/* Headings */
h2, h3 {
    color: #f5b81b; /* Yellow color for headings */
    text-align: center;
}

/* Button Links */
a.button {
    background-color: #f5b81b; /* Yellow button */
    color: #000;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

a.button:hover {
    background-color: #d9a414; /* Darker shade on hover */
}

/* Footer Section */
footer {
    background-color: #333; /* Dark footer background */
    color: #f5b81b; /* Yellow text */
    padding: 20px 0;
    text-align: center;
}

.footer-links a {
    color: #f5b81b; /* Yellow links */
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Section Styling */
.section {
    background-color: #1a1a1a; /* Dark gray background for sections */
    padding: 40px 20px;
    margin: 20px 0;
    border-radius: 10px;
}

/* Center Content */
.center {
    text-align: center;
}
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.client-logo {
    max-width: 100px;
    height: auto;
}
a.button-link {
    background-color: #f5b81b;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

a.button-link:hover {
    background-color: #d9a414;
    transform: scale(1.05);
}
.card {
    background-color: #fff;
    color: #333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3);
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #f5b81b;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

input[type="submit"] {
    background-color: #f5b81b;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin: 20px auto;
}

input[type="submit"]:hover {
    background-color: #d9a414;
    transform: scale(1.05);
}
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px; /* Ensures consistent padding */
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Uniform border */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    font-size: 16px; /* Uniform text size */
    box-sizing: border-box; /* Prevent overflow */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #f5b81b; /* Highlight border on focus */
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 5px rgba(245, 184, 27, 0.8); /* Add glow on focus */
}
a.button-link {
    display: inline-block;
    background-color: #f5b81b; /* Bright yellow background */
    color: #000; /* Black text */
    padding: 12px 20px; /* Space inside the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Smooth rounded corners */
    font-weight: bold; /* Bold text */
    text-align: center; /* Center align text */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover animation */
}

a.button-link:hover {
    background-color: #d9a414; /* Darker yellow on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}
/* Card Styling */
.card {
    background-color: #fff; /* White background */
    color: #333; /* Dark gray text */
    padding: 20px; /* Space inside the card */
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation for hover effect */
    margin: 20px; /* Space between cards */
}

.card:hover {
    transform: translateY(-10px); /* Lift card on hover */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

/* Layout Container */
.dashboard-container {
    max-width: 1200px; /* Maximum width for the dashboard */
    margin: 50px auto; /* Center the container */
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    justify-content: center; /* Center-align cards */
    gap: 20px; /* Space between cards */
}

/* Card Title Styling */
.card h3 {
    font-size: 20px;
    color: #f5b81b; /* Bright yellow for titles */
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
}
/* Dashboard Container */
.dashboard-container {
    max-width: 1200px; /* Maximum width for the content */
    margin: 50px auto; /* Center the container horizontally */
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    gap: 30px; /* Space between cards */
}

/* Card Styling */
.card {
    background-color: #fff; /* White background */
    color: #333; /* Dark gray text */
    padding: 20px; /* Space inside the card */
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation on hover */
    width: 300px; /* Fixed width for uniform card size */
    text-align: center; /* Center text inside cards */
}

.card h3 {
    font-size: 22px; /* Slightly larger font for titles */
    color: #f5b81b; /* Yellow for titles */
    margin-bottom: 10px;
}

.card p {
    font-size: 16px; /* Standard text size */
    line-height: 1.5; /* Better spacing between lines */
    margin-bottom: 20px;
}

/* Button inside the card */
.card .button-link {
    display: inline-block;
    width: 80%; /* Buttons are smaller than card width */
    padding: 10px 0; /* Vertical padding */
    background-color: #f5b81b;
    color: #000;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card .button-link:hover {
    background-color: #d9a414;
    transform: scale(1.05); /* Slight zoom effect */
}
/* Profile Page Styling */
.access-content-button {
    display: block;
    margin: 20px auto; /* Center the button */
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effects */
}

.access-content-button:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.navigation-buttons {
    text-align: center;
    margin: 20px 0;
}

.navigation-buttons a {
    margin: 0 10px;
}

.success {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.error {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
/* Profile Card Styling */
.card {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    text-align: center;
    max-width: 400px;
}

/* Access Card Styling */
.access-card {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.access-card-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.access-card p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}

/* Navigation Buttons */
.navigation-buttons {
    text-align: center;
    margin: 20px 0;
}

.navigation-buttons a {
    margin: 0 10px;
}

/* Success and Error Messages */
.success {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.error {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
/* Centering the profile and access card within the same container */
.dashboard-container {
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Styling for the Access Card */
.access-card {
    margin-top: 30px; /* Add some space between the form and the access card */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.access-card-image {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.access-card p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}
/* Styling for the Home Button */
.home-button {
    display: inline-block;
    background-color: #f5b81b; /* Button background color */
    color: #000; /* Button text color */
    padding: 10px 20px; /* Padding around the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold; /* Bold text */
    font-size: 14px; /* Font size */
    margin: 10px; /* Space around the button */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Hover effects */
}

.home-button:hover {
    background-color: #d9a414; /* Darker color on hover */
    transform: scale(1.05); /* Slight grow effect on hover */
}
/* Home Button - Positioned on the Right */
.home-button {
    display: inline-block;
    background-color: #f5b81b; /* Yellow */
    color: #000; /* Black text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 20px;
    right: 20px; /* Position the button to the right */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect for Home Button */
.home-button:hover {
    background-color: #d9a414;
    transform: scale(1.05);
}

/* Error Message Styling */
.error {
    color: red;
    font-weight: bold;
    margin: 10px 0;
    text-align: center;
}

/* Join Now Button Styling */
.button-link {
    display: inline-block;
    background-color: #f5b81b; /* Yellow */
    color: #000; /* Black text */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin: 10px auto;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-link:hover {
    background-color: #d9a414;
    transform: scale(1.05);
}
