/* Estilo geral do corpo com fundo rosa bebê */
body {
            background-color: #ffe4e1 !important;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column; /* Flex em coluna para o layout */
            height: 100vh; /* Altura total da tela */
		}
/* Estilizando o header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #ffffff; /* Branco para contraste */
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1;
}

nav {
    flex: 1;
    text-align: left;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: #333;
}

.logo {
    text-align: center;
    flex: 1;
}

.logo img {
    height: 60px;
}

.header-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    margin-right: 20px;
}

.search-bar input {
    border: none;
    padding: 10px;
    outline: none;
    width: 300px;
}

.search-bar button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button img {
    height: 20px;
    width: 20px;
}

.user-cart img {
    height: 30px;
    margin-left: 20px;
}

main {
    padding: 20px;
}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff; /* Branco para fundo do formulário */
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    margin-bottom: 20px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.login-container button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-container button:hover {
    background-color: #555;
}

.login-container p {
    margin-top: 20px;
}

.login-container p a {
    color: #ff4081;
    text-decoration: none;
}

.login-container p a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}
