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

img {
    height: fit-content;
    width: 8%;
    border-radius: 10px;
}

body {
    background-color: #303446;
    color: #c6d0f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #292c3c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

input,
select,
button {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

button {
    background-color: #81c8be;
    color: #303446;
    cursor: pointer;
}

button:hover {
    background-color: #99d1db;
}