.card {
    background: #a5a3a3c5;
    color:#0a0000;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 320px;
    display:flex;
    flex-direction:column;
}

.card h2 {
    margin-bottom: 16px;
    font-size: 20px;
    text-align: center;
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.field label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #272727;
}

.field input[type="date"] {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.field input[type="date"]:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

button {
    padding:14px 22px;
    font-size:16px;
    border:none;
    border-radius:8px;
    background:#ff7b00;
    color:#000;
    cursor:pointer;
}

.etat {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}