/* Basic Styling */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f6f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #696767;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: none; /* Initially hidden */
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin: 20px auto; /* Center the loader */
    position: absolute;
    top: 80%;
    left: 50%;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

header {
    background-color: #f8f9fa;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

header .container {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.logo-container h1 {
    font-size: 1.75rem;
    color: #007bff;
    margin: 0;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

header nav li {
    list-style-type: none;
    margin: 0;
}

#authLinks {
    display: flex;
    gap: 15px;
}

#authLinks a {
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #007BFF;
    border-radius: 4px;
    color: #007BFF;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    text-align: center;
}

#authLinks a:hover {
    background-color: #007BFF;
    color: #fff;
}

/* Hamburger menu */
.hamburger {
    /* padding-top: 15px; */
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #007BFF;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#nav-menu ul {
    display: flex;
    gap: 20px;
}

#nav-menu ul li a {
    padding-right: 10px;
    color: #007BFF;
    font-weight: bold;
}

/* Responsive Design */
/* Media Queries for Hamburger Menu */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between; /* Align items properly */
        position: relative; /* To position the hamburger menu */
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
    }

    .hamburger div {
        width: 30px;
        height: 5px;
        background-color: #007bff;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
    }

    #nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #f8f9fa;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none; /* Hidden by default */
        transition: all 0.3s ease-in-out; /* Smooth transition for the menu */
        padding-bottom: 20px; /* Space at the bottom for logout */
    }

    #nav-menu.active {
        display: flex; /* Shown when active */
    }

    #nav-menu ul {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    #nav-menu ul li {
        width: 100%;
        padding: 10px 0;
    }

    #authLinks {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    #authLinks a {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        font-size: 1.1rem;
        text-align: center;
        border: 2px solid #007BFF;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    #authLinks a:hover {
        background-color: #007BFF;
        color: white;
    }

    /* Style logout button */
    #authLinks a.logout {
        border: 2px solid red; /* Optional: Style logout button differently */
        color: red;
        margin-top: auto; /* Push it to the bottom */
    }

    #authLinks a.logout:hover {
        background-color: red;
        color: white;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 1.2rem;
    }

    #authLinks {
        flex-direction: column;
        width: 100%;
    }

    #authLinks a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

/* login/signup section */
.password-container {
    position: relative;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    color: #666;
}

.form-group input[type="password"],
.form-group input[type="text"] {
    width: 100%;
    padding-right: 35px;
}

/* Hero Section */
.hero {
    position: relative;
    /* background-color: #f4f6f9; Softer background color for modern look */
    padding: 6rem 2rem; /* Added extra padding for larger screens */
    text-align: center;
    overflow: hidden; /* Ensure the blur does not overflow */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("job-portal-banner1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0.6) blur(2px); /* Adds a dimmed, blurred background */
    z-index: -1; /* Ensures the image is behind the content */
    transition: all 0.5s ease-in-out;
}

.hero:hover::before {
    filter: brightness(0.5) blur(3px); /* Slight change on hover for an interactive feel */
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensure the content stays above the blurred image */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #ffffff; /* White text for contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle text shadow for better readability */
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700; /* Bold font for emphasis */
    line-height: 1.2;
    color: #fff;
    animation: fadeInDown 1s ease; /* Smooth entrance animation */
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #f1f1f1;
}

.hero .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #3498db;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.hero .cta-button:hover {
    background-color: #2c81ba;
    transform: translateY(-5px); /* Button "lift" effect on hover */
}

@media (max-width: 1024px) {
    .hero h2 {
        font-size: 2rem; /* Adjust font size for tablets */
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero .cta-button {
        padding: 12px 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem; /* Reduced padding on smaller screens */
    }

    .hero h2 {
        font-size: 1.75rem; /* Smaller font size for smaller devices */
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .cta-button {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem; /* Font size for mobile devices */
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .cta-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Container */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-direction: column;
}

.search-container input[type="text"] {
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 5px 0 0 5px;
    width: 400px;
}

.search-container button {
    /* width: 15%; */
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: #0056b3;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

.about-description {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    position: relative;
    perspective: 1000px;
}

.highlight {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    color: #2c3e50;
    cursor: pointer;
}

/* Size variations for highlights */
.highlight.large {
    font-size: 1.3em;
    font-weight: 700;
    color: #2980b9;
}

.highlight.medium {
    font-size: 1.15em;
    font-weight: 600;
    color: #3498db;
}

.highlight.small {
    font-size: 1.05em;
    font-weight: 500;
    color: #2c3e50;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: #3498db;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight:hover {
    transform: scale(1.05);
}

.highlight:hover::after {
    transform: scaleX(1);
}

.keyword-tooltip {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8em;
    white-space: nowrap;
}

.highlight:hover .keyword-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Jobs Section */
.jobs ul {
    list-style: none;
    padding: 0;
}

.jobs li {
    /* background-image: url("job-portal-banner.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(1.5px); */
    background-color: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.jobs h3 {
    margin-top: 0;
}

.jobs .company {
    font-weight: bold;
    color: #333;
}

.jobs .location {
    font-size: 0.9rem;
    color: #777;
}

/* Job Details Page */
/* General Styles */
#jobDetails {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px; /* Slightly larger border radius for a modern look */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer, more pronounced shadow */
    max-width: 900px; /* Limit the width for better readability */
    margin: 2rem auto; /* Center horizontally */
    overflow: hidden; /* Prevent overflow for child elements */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add smooth transitions */
}

#jobDetails:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
}

#jobDetails h2 {
    margin-top: 0;
    font-size: 2rem;
    color: #333;
    text-align: center; /* Center the title */
    margin-bottom: 1rem; /* Space below title */
    font-weight: 700;
}

#jobDetails .detail-item {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1rem; /* Base font size */
    line-height: 1.6; /* Improve readability */
    display: flex; /* Flex to create a label-content layout */
    flex-wrap: wrap; /* Wrap if content overflows */
}

#jobDetails .detail-item strong {
    font-weight: 700;
    color: #000;
    margin-right: 10px; /* Space between label and value */
}

#jobDetails .salary {
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
}

#jobDetails .salary span {
    display: inline-block;
    background-color: #d4edda;
    color: #155724;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
}

#jobDetails .apply-btn {
    display: block;
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#jobDetails .apply-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Mobile Responsiveness (Tablets & Smaller Devices) */
@media (max-width: 768px) {
    #jobDetails {
        padding: 1.5rem;
        max-width: 100%; /* Full width for mobile */
        margin: 1.5rem 1rem; /* Reduced margin for smaller screens */
    }

    #jobDetails h2 {
        font-size: 1.8rem; /* Slightly smaller on mobile */
    }

    #jobDetails .detail-item {
        font-size: 0.95rem; /* Reduce font size for smaller screens */
    }

    #jobDetails .salary {
        font-size: 1rem;
    }

    #jobDetails .apply-btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Mobile Responsiveness (Small Phones) */
@media (max-width: 480px) {
    #jobDetails {
        padding: 1rem;
        margin: 1rem; /* Less margin on smaller phones */
    }

    #jobDetails h2 {
        font-size: 1.6rem; /* Smaller heading on smaller phones */
    }

    #jobDetails .detail-item {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    #jobDetails .salary {
        font-size: 0.95rem;
    }

    #jobDetails .apply-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}


#applyButton {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    background-color: #28a745;
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

/* Drop zone styling */
.drop-zone {
    border: 2px dashed #cccccc;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.drop-zone__prompt {
    font-size: 18px;
    color: #666666;
}

.drop-zone__input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.btn {
    margin-top: 20px;
}

#applyButton:hover {
    background-color: #218838;
}

/* Resume Upload Page */
#resumeForm .form-group {
    margin-bottom: 20px;
}

#resumeForm textarea {
    height: 120px;
}

#responseMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    background-color: #e9ecef;
}

/* Footer Styles */
.footer-bottom {
    background-color: #23272b;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #bdbdbd;
    font-size: 0.9rem;
}

.footer-logo img {
    max-width: 100px;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #bdbdbd;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icons a:hover {
    color: white;
}

/* Progress Bar Styles */
#uploadProgress {
    margin-top: 20px;
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #007bff;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

#uploadStatus {
    text-align: center;
    margin-top: 10px;
}

/* Styles for Why Choose Us and Things You Get sections */
.why-choose-us, .things-you-get {
    padding: 40px 0;
    text-align: center;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
}

.feature-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 1 0 200px;
    text-align: center;
}

.feature-box i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #007bff;
}

.feature-box h3 {
    margin-bottom: 10px;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Keyframes for sliding testimonials in a continuous loop */
@keyframes testimonialSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Styles for Testimonials Section */
.testimonials {
    padding: 40px 0;
    text-align: center;
    overflow: hidden; /* Ensures no overflow from sliding testimonials */
}

.testimonials .features-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials .features-container::before,
.testimonials .features-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
}

.testimonials .features-container::before {
    left: 0;
    background: linear-gradient(to right, #f4f6f8 0%, transparent 100%);
}

.testimonials .features-container::after {
    right: 0;
    background: linear-gradient(to left, #f4f6f8 0%, transparent 100%);
}

.testimonial-slider {
    display: flex;
    animation: testimonialSlide 20s linear infinite;
    width: max-content;
    will-change: transform; /* Improves performance on browsers */
}

.testimonials:hover .testimonial-slider,
.testimonial-slider:hover {
    animation-play-state: paused; /* Pause animation on hover */
}

.testimonial-box {
    flex: 1 0 280px; /* Allows responsive resizing */
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 4rem;
    margin: 0 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-box h4 {
    margin-bottom: 5px;
}

.testimonial-box h5 {
    margin-bottom: 5px;
    font-size: medium;
    color: #777;
}

.testimonial-box p {
    font-style: italic;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    header nav ul {
        margin-top: 1rem;
    }

    header nav li {
        margin-left: 0;
        margin-right: 20px;
    }

    .search-container input[type="text"] {
        width: 100%;
    }

    .about-content,
    .contact-content {
        flex-direction: column;
    }

    /* .feature-box,
    .testimonial-box {
        flex-basis: 40%;
    } */

    .auth-container {
        width: 90%;
    }
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Ensures proper layout on smaller devices */
}

.about-text {
    flex: 1;
    max-width: 600px; /* Limits the width for better readability */
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333; /* Darker color for better readability */
}

.about-text .highlight.large {
    font-weight: bold;
    color: #0077b6; /* Primary brand color */
}

.about-text .highlight.medium {
    font-weight: 600;
    color: #0096c7; /* Secondary brand color */
}

.about-text .highlight.small {
    font-weight: 500;
    color: #00b4d8; /* Light brand color */
}

/* Founder Box */
.founder-box {
    display: flex;
    align-items: center;
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 200px;
}

.founder-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.founder-box .founder-name {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin-left: 10px;
}

.about-image {
    flex: 1;
    order: -1;
}

.about-image img {
    height: 390px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        order: 1; /* Puts the image below the text on smaller screens */
    }

    .founder-box {
        justify-content: center;
        max-width: 100%;
    }

    .founder-box img {
        width: 40px;
        height: 40px;
    }

    .about-text {
        text-align: center;
    }
}


/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background-color: #386796;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form .btn {
    align-self: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #bdbdbd;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #bdbdbd;
}

.contact-info i {
    margin-right: 10px;
    color: #00d5ff;
}

.contact-info .social-icons {
    margin-top: 20px;
}

.contact-info .social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: #bdbdbd;
    font-size: 20px;
    transition: color 0.3s;
}

.contact-info .social-icons a:hover {
    color: #fff;
}

/* Auth Forms - General */
.auth-container {
    width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f4f4f4;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.role-selection{
    display: flex;
}

.auth-container button[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-container button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.success-message {
    background-color: #28a745;
    color: white;
}

.error-message {
    background-color: #dc3545;
    color: white;
}