body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #ffafbd, #ffc3a0);
    color: #333;
}

.welcome-screen {
    text-align: center;
    padding: 50px;
    background-color: white;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #007BFF;
    color: white;
}

.auth-section, .feature-section {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(to bottom, #ffffff, #f0f0f0);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.auth-section input, .feature-section input {
    padding: 10px;
    margin: 10px;
    width: 80%;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

#taskResponses {
    margin-top: 20px;
}

#taskResponses .response {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f9f9f9;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
