
.form {
    width: 100%;
    display: flex;
    justify-content: center;
}

label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #cd6d22;
    width: 150px; 
}

input {
    padding: 10px 12px;
    border: 1px solid #cceeee;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #f9ffff;
    margin: 5px;
}

input:hover {
    border-color: #66cccc;
}

input:focus {
    outline: none;
    border-color: #00b3b3;
    box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.2);
    background: white;
}

input::placeholder {
    color: #9ccccc;
}

textarea {
    padding: 10px 12px;
    border: 1px solid #cceeee;
    border-radius: 8px;

    font-size: 14px;
    font-family: inherit;

    transition: all 0.2s ease;

    background: #f9ffff;

    margin: 5px;

    width: 100%;
    height: 180px;

    resize: vertical;
}



.day,
.month,
.hour,
.minute {
    width: 70px !important;

    text-align: center;
}

.year {
    width: 110px !important;

    text-align: center;
}
textarea:hover {
    border-color: #66cccc;
}

textarea:focus {
    outline: none;
    border-color: #00b3b3;

    box-shadow: 0 0 0 3px rgba(0, 179, 179, 0.2);

    background: white;
}

textarea::placeholder {
    color: #9ccccc;
}


fieldset {
    flex: 1 1 300px;

    border: 2px solid #666;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

legend {
    padding: 0 10px;
    font-weight: bold;
    color: #755d9a;
}

select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;

    border: 2px solid #666;
    border-radius: 8px;

    background-color: white;
    color: #222;

    outline: none;
    cursor: pointer;

    transition: 0.2s;
}

select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.4);
}

option {
    font-size: 16px;
    color: #222;
}