body {
    background: #232328;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

form {
    max-width: 550px;
    margin: 50px auto 0 auto;
    background: #2f2f36;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(20,22,30,0.14);
    padding: 36px 28px 30px 28px;
}

label {
    display: block;
    font-size: 1.09rem;
    margin-bottom: 7px;
    color: #f1f1f4;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 0;
}

/* ----------- Input, Select, Textarea Core Styles ----------- */
input, select, textarea {
    display: block;
    width: 100%;
    padding: 17px 15px;
    margin-bottom: 26px;
    border: 1px solid #41414a;
    border-radius: 12px;
    background: #35353b;
    font-size: 1.09rem;
    transition: border 0.2s, background 0.2s;
    outline: none;
    color: #fafaff;
    font-family: inherit;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(30, 30, 45, 0.08);
}

/* ---------- Dropdown (Select) Modern Style ---------- */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 22px;
    cursor: pointer;
    padding-right: 45px;
}

/* ----------- Date Input Modern Style ----------- */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background: #35353b;
    color: #fafaff;
    border: 1px solid #41414a;
    padding: 17px 15px;
    font-size: 1.09rem;
    border-radius: 12px;
    width: 100%;
    transition: border 0.2s, background 0.2s;
    position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.8);
    cursor: pointer;
    margin-right: 6px;
    opacity: 0.85;
}
input[type="date"]:hover,
input[type="date"]:focus {
    background: #43434a;
    border-color: #000;
}

/* ----------- Hover/Focus for Inputs, Selects, Textareas ----------- */
input:hover, select:hover, textarea:hover {
    background: #43434a;
    border-color: #19191c;
}
input:focus, select:focus, textarea:focus {
    background: #41414a;
    border-color: #000;
}

/* ----------- Fieldset & Legend ----------- */
fieldset {
    border: 1px solid #41414a;
    margin-top: 15px;
    padding: 10px;
    border-radius: 10px;
}
legend {
    font-weight: bold;
    color: #e6e6ee;
    font-size: 1.04rem;
    padding: 0 6px;
}

/* ----------- Button Styles ----------- */
button {
    background: #8181fa;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 17px 0;
    font-size: 1.15rem;
    border-radius: 22px;
    cursor: pointer;
    width: 100%;
    margin-top: 12px;
    letter-spacing: 0.02em;
    transition: background 0.16s;
    box-shadow: 0 2px 12px rgba(80,80,180,0.08);
}
button:hover {
    background: #6767e6;
}

/* ----------- File Note Style ----------- */
.file-note {
    color: #b5b5bb;
    font-size: 0.97rem;
    margin-bottom: 10px;
}




/* add task */

form .task-title, .subtitle{
    color: #ffffff;
}

/* add services */
form h2{
    color: #ffffff;
}

