/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: "Oswald", sans-serif;
   font-weight: 500;
    background-color: #f2ecf9;
    color: #333;
    padding: 10px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d4f1;
    margin-bottom: 15px;
    background-color: #a463f2;
    padding: 15px;
    border-radius: 10px;
}

.back-button {
    color: white;
    font-size: 24px;
    margin-right: 10px;
    text-decoration: none;
}

h1 {
    font-size: 20px;
    font-weight: 700;
    color: white;
}
input, select {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #a463f2;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #f9f5fc;
}

input::placeholder {
    color: #a463f2;
    opacity: 1;
}

input:focus, select:focus {
    border-color: #302b63;
    outline: none;
    background-color: #fff;
}


.task-details {
    margin-top: 10px;
}

.task-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.task-header img {
    width: 50px;
    height: 50px;
    border: 2px solid #a463f2;
    border-radius: 20px;
    margin-right: 15px;
}

.task-info h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.task-info p {
    margin: 5px 0;
    font-size: 14px;
    color: gray;
}

.reward {
    margin-left: auto;
    text-align: right;
}

.reward .points {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    border: 1px solid #a463f2;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 25px;
    background: #a463f2;
}

.reward .currency {
    font-size: 14px;
    color: gray;
}

.instructions, .disclaimer {
    margin-top: 20px;
}

.instructions h3, .disclaimer h3 {
    font-size: 16px;
    font-weight: 700;
    color: #a463f2;
    margin-bottom: 10px;
}

.disclaimer h3 {
    font-size: 16px;
    font-weight: 700;
    color: red;
    margin-bottom: 10px;
}

.instructions p, .disclaimer p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.instructions ol {
    padding-left: 0px;
    margin: 10px 0;
}

.instructions ol li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.instructions ol li i {
    margin-right: 10px;
    color: #a463f2;
    font-size: 18px;
}

.validation-info {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #a463f2;
    display: flex;
    align-items: center;
}

.validation-info i {
    margin-right: 5px;
    font-size: 16px;
}

.action-button {
    margin-top: 30px;
    text-align: center;
}

.action-button button {
    background-color: #302b63;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button button i {
    margin-right: 10px;
    font-size: 20px;
}

.action-button button:hover {
    background-color: #211d45;
}

.action-button a {
    background-color: #302b63;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.action-button a i {
    margin-right: 10px;
    font-size: 20px;
}

.action-button a:hover {
    background-color: #211d45;
}

/* Responsive Design */
@media (max-width: 300px) {
    .container {
        padding: 15px;
    }

    .task-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reward {
        margin-left: 0;
        margin-top: 10px;
        text-align: left;
    }
}