
    * {
        box-sizing: border-box;
    }

    body {
        background: white;
        color: #333;
        font-family: Arial, sans-serif;
        padding: 0;
        margin: 0;
    }

    .main-container {
        max-width: 800px;
        padding: 20px;
        margin: auto;
    }

    form {
        background: #6b3610;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    input, select, textarea, button {
        width: 100%;
        padding: 12px;
        margin-top: 8px;
        margin-bottom: 20px;
        background: white;
        border: 1px solid #555;
        color: black;
        border-radius: 5px;
        font-size: 1rem;
    }

    button {
        background-color: orange;
        color: #000;
        font-weight: bold;
        cursor: pointer;
        border: none;
        transition: background-color 0.3s ease;
    }

    button:hover {
        background-color: darkorange;
    }

    .section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .half {
        width: 100%;
    }

    @media (min-width: 600px) {
        .section {
            flex-direction: row;
        }

        .half {
            width: 48%;
        }
    }

    a.button-link {
        font-size: large;
        display: inline-block;
        background-color: white;
        color: #6b3610;
        font-weight:bolder;
        text-align: center;
        padding: 12px;
        width: 100%;
        border-radius: 6px;
        text-decoration: none;
        transition: background-color 0.3s;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    a.button-link:hover {
        background-color: darkorange;
        color: white;
    }

    p {
        font-size: 0.95em;
        line-height: 1.5;
        color: #ddd;
    }

    h1 {
        color: black;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    label {
        color: #ffffff;
        font-weight: 600;
    }
    input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}
.last-div{
    color: white;
}

    @media (max-width: 480px) {
        h1 {
            font-size: 1.2rem;
        }

        input, select, textarea, button {
            font-size: 0.95rem;
        }

        a.button-link {
            font-size: 0.95rem;
        }
    }

     .success-message {
            background-color: #d4edda;
            color: #155724;
            padding: 10px;
            border: 1px solid #c3e6cb;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        .error-message {
            background-color: #f8d7da;
            color: #721c24;
            padding: 10px;
            border: 1px solid #f5c6cb;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        .error-list {
            margin: 0;
            padding-left: 20px;
        }