body {
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #d15184;
    text-align: center;
    padding: 11% 20%; /* 10% top and bottom, 20% left and right */
    border-radius: 10px;
    max-width: 80%; /* Set a maximum width for the container */
    margin: 0 auto; /* Center the container horizontally */
}


.logo img {
    max-width: 500px; /* Make the logo responsive */
    height: auto;
}

form {
    margin-top: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
button {
    padding: 10px 20px;
    background-color: black;
    color: #d15184;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 50%;
    text-align: center;
}

button {
    margin-top: 10px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: #d15184;
    text-align: center;
}

input[type="text"],
input[type="email"] {
    margin-bottom: 10px;
}
