body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background-color: #E31937;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px; /* Adjust the height of the logo */
    margin-right: 10px; /* Space between the logo and text */
}

.navbar-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-links li {
    margin-right: 20px;
}

.navbar-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.navbar-links li a:hover {
    color: #ffa500;
}

button.btn-link {
    background: none;
    color: #fff;
    border: none;
    font-size: 18px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

button.btn-link:hover {
    color: #ffa500;
}


.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.card {
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin-top: 50px; /* Space from the navbar */
    margin-bottom: 50px; /* Space from the footer */
    margin-left: 25%;
    margin-right: 25%;
}

h1, h3 {
    margin-top: 0;
    color: #333;
}

label {
    display: block;
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #080c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}



#feedback {
    margin-top: 10px;
    font-weight: bold;
}
/* Footer Styles */
.footer {
    background-color: #222; /* Darker shade for a modern look */
    color: #fff; /* Text color */
    padding: 15px 20px; /* Improved spacing */
    text-align: center;
    font-size: 14px; /* Slightly smaller font for subtlety */
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 3px solid #E31937; /* Subtle top border for separation */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for elevation */
}

/* Sticky Footer for pages with little content */
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content {
    flex: 1; /* Pushes footer to the bottom if content is short */
}

/* Footer Hover Effects */
.footer a {
    color: #ffa500; /* Highlighted link color */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff; /* Color change on hover for links */
}

