body {
    font-family: Arial, sans-serif;
    background-image: url('login.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed; /* This ensures that the background image doesn't move with scroll */
    height: 100vh; /* ensures full viewport height coverage */
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.cart-items {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.cart-item img {
    width: 50px;
    height: 50px;
}

.cart-total {
    padding: 20px;
    text-align: right;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 140px; /* Adjust as needed */
    height: 80px; /* Adjust as needed */
    margin-right: px;
}
nav a {
    margin-left: 1em;
    color: #fff;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent white for better readability */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: left;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], 
input[type="email"], 
input[type="password"] {
    width: 90%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #010a15;
}

.signup-link {
    margin-top: 20px;
    text-align: center;
}

.signup-link a {
    color: #1d03b4;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}
