html, body {
    height: 100%; /* Ensure body takes up the full viewport height */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    display: flex;
    font-family: 'Verdana', sans-serif;
}

main {
    flex-grow: 1; /* Ensures the main content takes up the remaining space */
    padding: 40px 0; /* Adds space above and below the main content */
}

footer {
    background-color: #C5A691;
    color: #000;
    width: 100%;
    text-align: center;
    padding: 20px; /* Optional: Add padding to the footer for more space */
}

footer a {
    color: #000 !important;
    text-decoration: none;
}

footer a:hover {
    color: #333;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3D2E1E;
    margin-bottom: 15px;
}

.welcome-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

.dropdown-item {
    align-items: center;
    margin: 0 auto;
    display: flex;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    max-width: 400px;
    width: 100%;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    color: white;
    text-shadow: 1px 1px 2px black;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.password-hint i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.password-hint span {
    font-size: 1.5rem;
}

/* Scoped CSS for cart page */
.cart-page .product-img {
    width: 100px; /* Adjust the size of the image */
    height: auto;
    display: block;
    margin: 0 auto; /* Centers the image */
    max-width: 100%; /* Ensures the image doesn't overflow */
}
