.Field_input {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.Field_input_title {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 8px;
}

.Field_input_box {
    border: none;
    outline: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Manrope';
    line-height: 24px;
    padding: 0;
    margin: 0;
}

.Field_input_box::placeholder {
    color: #AFAFAF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.Field_input_base {
    height: 1px;
    background-color: #CCCCCC;
    margin-top: 8px;
    margin-bottom: 8px;
}

.active_field_base {
    background-color: #3857FF;
}

.error_field_base {
    background-color: var(--Error-red, #EC1E30);
}

.Field_input_subtext {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.Field_select_box {
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
}

@media (min-width : 768px) {
    .Field_input_title {
        font-size: 16px;
    }
}