.form-section {
    background-color: white;
    display: flex;
    gap: 120px;
    padding: 40px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #f1f5f9;
    width: 100%;
}

.form-header {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-line {
    width: 40px;
    height: 1px;
    background-color: #1e1b4b;
    margin: 8px 0;
}

.form-action-button {
    display: flex;
    background-color: #06b6d4;
    gap: 8px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 100px;
    padding: 0 32px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: white;
    width: fit-content;
}

.form-action-button:hover {
    background-color: #1e1b4b;
}

.form-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 32px;
}

.form-double {
    display: flex;
    gap: 32px;
    width: 100%;
}

.form-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-input-count {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* width: 100%; */
}

.req-input {
    color: red;
    font-weight: 600;
}

input[type="text"].input-text {
    height: 40px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #d4d4d4;
    background-color: #fafafa;
    color: #171717;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.14px;
    background-repeat: no-repeat;
    padding: 0 12px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

input[type="text"].input-text:focus {
    border: 1px solid #06b6d4;
    background-color: white;
    outline: none;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #06b6d420;
}

input[type="date"].input-date {
    height: 40px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #d4d4d4;
    background-color: #fafafa;
    color: #171717;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.14px;
    background-repeat: no-repeat;
    padding: 0 12px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

input[type="date"].input-date:focus {
    border: 1px solid #06b6d4;
    background-color: white;
    outline: none;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #06b6d420;
}

input[type="text"].input-text::placeholder {
    color: #d4d4d4;
    font-weight: 400;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    background-color: #ffffff00;
    width: 100px;
    text-align: center;
    /* -moz-appearance: textfield; */
    color: #171717;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.14px;
}
input[type="number"]:focus {
    outline: none;
}

.form-count {
    display: flex;
    height: 40px;
    align-items: center;
    background-color: #fafafa;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    padding: 2px;
    gap: 4px;
    justify-content: space-between;
    width: fit-content;
}

.form-count:focus-within {
    border: 1px solid #06b6d4;
    background-color: white;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #06b6d420;
}

.count-btn {
    padding: 9px;
    background-color: #e5e5e5;
    border-radius: 8px;
}

.count-btn:hover {
    background-color: #06b6d4;
}

.form-input textarea {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #d4d4d4;
    background-color: #fafafa;
    color: #171717;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.14px;
    padding: 12px;
}

.form-input textarea:focus {
    border: 1px solid #06b6d4;
    background-color: white;
    outline: none;
    box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08), 0 0 0 2px #06b6d420;
}

.input-dropdown {
    display: flex;
    border: 1px solid #d4d4d4;
    background-color: #fafafa;
    color: #171717;
    height: 40px;
    padding: 0 8px;
    border-radius: 8px;
}

@media only screen and (max-width: 580px) {
    .form-section {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-radius: 16px;
    }

    .form-header {
        width: 100%;
        gap: 8px;
    }

    .form-line {
        width: 100%;
        background-color: #1e1b4b20;
    }

    .form-content {
        gap: 16px;
    }

    .form-double {
        flex-direction: column;
        gap: 16px;
    }

    .form-input textarea {
        height: 80px;
    }

    .form-action-button {
        width: 100%;
        margin-top: 16px;
        height: 48px;
    }
}
