* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

header {
    width: 100%;
    height: 250px;
    background-image: url('https://edube.org/uploads/media/default/0001/04/products_image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-weight: bold;
    font-size: 50px;
    color: rgb(198, 38, 188);
}

header nav a {
    color: rgb(222, 7, 7);
    text-decoration: none;
    margin: 10px;
    font-size: 25px;
}

header a:hover {
    text-decoration: underline;
}

.order {
    width: 100%;
    background-image: url(https://www.supermarketperimeter.com/ext/resources/2023/08/21/AdobeStock_198186611.jpg?height=667&t=1692630520&width=1080);
    background-size: cover;
    border-radius: 20px;
    margin-top: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    justify-content: center;
}

.bread1 {
    width: 300px;
    background-color: rgba(0, 255, 255, 0.8);
    border-radius: 30px;
    padding-bottom: 10px;
}

.bread1 img {
    width: 100%;
    height: 400px;
    border-radius: 30px;
}

.bread1 a {
    font-size: 24px;
    display: block;
    text-align: center;
    margin-top: 10px;
    text-decoration: none;
    color: black;
}


.login-container {
    gap: 20px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.login-form {
    width: 100%;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    font-size: 16px;
}

.login-button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    margin-bottom: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: green;
}
