/* earnings/static/css/style.css */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fa;
    color: #333;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.task-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.task-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s ease;
}

.task-card:hover {
    transform: translateY(-5px);
}

.task-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.task-description {
    font-size: 14px;
    margin-bottom: 10px;
}

.task-reward {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
}

.task-button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.task-button:hover {
    background-color: #155ea1;
}

.auth-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #155ea1;
}