body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    max-width: 800px;
    width: 150%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 8px;
    text-align: center;
}
input[type="text"], input[type="email"], input[type="submit"], button[type="logout"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
button[type="logout"] {
    background-color: #f44336;
    color: white;
    cursor: pointer;
}
button[type="logout"]:hover {
    background-color: #aa423a;
}
label[for="submit"] {
  color: grey;
}
