/* General Styles */
body.dark-theme {
    background-color: #121212; /* Full-page dark background */
    color: #ffffff; /* Light text color */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

/* Registration Container */
.registration-container {
    background-color: #1e1e1e; /* Matches the login container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    max-width: 400px;
    width: 100%; /* Responsive width */
    text-align: center; /* Center content */
}

/* Header Styles */
h1 {
    color: #0078d7; /* Accent color for heading */
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Navigation Link */
.navigation-link {
    font-size: 16px;
    color: #0078d7; /* Matches the theme */
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px; /* Adds spacing below the link */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.navigation-link:hover {
    color: #005bb5; /* Darker blue on hover */
    text-decoration: underline;
}

/* Input Fields */
.registration-container input[type="text"],
.registration-container input[type="email"],
.registration-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #0078d7; /* Blue border outline */
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 16px;
}

.registration-container input:focus {
    outline: none;
    border: 2px solid #0078d7; /* Enhanced blue outline on focus */
    background-color: #333333;
}

/* Buttons */
.registration-container button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0078d7; /* Consistent button color */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.registration-container button:hover {
    background-color: #005bb5; /* Darker blue on hover */
}

/* Error Messages */
.error-message {
    color: #ff4d4d; /* Error message color */
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-container {
        padding: 20px;
    }

    h1 {
        font-size: 20px;
    }

    .registration-container input,
    .registration-container button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    .registration-container input,
    .registration-container button {
        font-size: 12px;
    }
}
/* Navigation Link Styled as Button */
.navigation-link {
    display: inline-block; /* Makes it behave like a button */
    padding: 10px 15px;
    background-color: #0078d7; /* Same blue as the register button */
    color: #ffffff; /* White text color */
    border: none;
    border-radius: 4px; /* Rounded corners */
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none; /* Removes underline */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navigation-link:hover {
    background-color: #005bb5; /* Darker blue on hover */
}
/* General Styles */
body.dark-theme {
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text color */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Vertical layout */
    min-height: 100vh; /* Full viewport height */
}

/* Main Content */
.main-content {
    flex: 1; /* Takes up available space between header and footer */
}

/* Footer Styling */
footer {
    padding: 15px;
    background-color: transparent; /* No grey box */
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    border-top: none; /* No border */
    margin-top: auto; /* Ensures footer stays at the bottom */
}

